// JCL_DEBUG_EXPERT_GENERATEJDBG OFF // JCL_DEBUG_EXPERT_INSERTJDBG OFF // JCL_DEBUG_EXPERT_DELETEMAPFILE OFF program cv_SetImageROI; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils, Core.types_c in '..\..\..\include\сore\Core.types_c.pas', core_c in '..\..\..\include\сore\core_c.pas', highgui_c in '..\..\..\include\highgui\highgui_c.pas', uLibName in '..\..\..\include\uLibName.pas', types_c in '..\..\..\include\сore\types_c.pas'; Const // имя картинки filename = 'Resource\cat2.jpg'; var image: PIplImage = nil; x: Integer; y: Integer; width: Integer; height: Integer; add: Integer; begin try image := cvLoadImage(filename, 1); Writeln('[i] image: ', filename); if not Assigned(image) then Halt; cvNamedWindow('origianl', CV_WINDOW_AUTOSIZE); cvNamedWindow('ROI', CV_WINDOW_AUTOSIZE); // задаём ROI x := 140; y := 120; width := 200; height := 200; // добавочная величина add := 200; cvShowImage('origianl', image); // устанавливаем ROI cvSetImageROI(image, cvRect(x, y, width, height)); cvAddS(image, cvScalar(add), image); // сбрасываем ROI cvResetImageROI(image); // показываем изображение cvShowImage('ROI', image); // ждём нажатия клавиши cvWaitKey(0); // освобождаем ресурсы cvReleaseImage(image); cvDestroyAllWindows; except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; end.