@flexabrain/mcp-server
Version:
Advanced electrical schematic analysis MCP server with rail engineering expertise
24 lines • 872 B
TypeScript
/**
* MCP Tool: Transform Schematic Image
*
* Performs image preprocessing and enhancement operations on electrical
* schematic images to improve OCR accuracy and component recognition.
* Optimized for rail electrical engineering diagrams and technical drawings.
*/
export declare function transformSchematicImage(args: {
input_path: string;
output_path?: string;
operations: Array<'enhance_contrast' | 'denoise' | 'binarize' | 'deskew' | 'resize' | 'crop' | 'rotate'>;
enhancement_level?: 'basic' | 'standard' | 'aggressive';
target_dpi?: number;
crop_region?: {
x: number;
y: number;
width: number;
height: number;
};
rotation_angle?: number;
preserve_aspect_ratio?: boolean;
output_format?: 'png' | 'jpg' | 'tiff';
}): Promise<string>;
//# sourceMappingURL=transform-schematic-image.d.ts.map