开发平台(Platform): (Ex: Win10, Linux, ...)
win10/VS2019
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
<opencv2> <pco.sdk>
问题(Question):
我本来使用opencv搭配相机(pco工业相机)的sdk , 希望在拍摄物体的当下,除了显示画
面外也能够及时储存每张图片
不过cpu速度很明显会下降很多,查了网络上的解法需要加入thread做处理.
我的思路是在int main 函式前使用class与public分别定义imshow与imwrite的行为
,再用thread来做加速. 不晓得这样做是否正确
还有一个问题是, 可能我对指标不是很熟…我在用下面语法写 public class时无法读取i
nt main的指标资讯, 希望各位大大能指点迷津
感谢
class test_thread{
public:
void cvshow( WORD Width, WORD Height, WORD buffer)
{
Width = &imgWidth; Height = & imgHeight; buffer = *imgBuffer;
cv::Mat cv_image;
cv_image = ( cv::Size(Width,Height), CV_16UC1, buffer)
imshow()
waitKey(1)
}
}
int main()
……
// 原始程式码(已简略), 目地是希望改成
// void cvshow()
// { cv: imshow }
// int main()
// { 读入相机资讯,并回传指标
// ex: imgWidth 、imgBuffer 给cvshow
// 做thread处理 }
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
#include "opencv.hpp"
#include "sc2_SDKStructures.h"
#include "PCO_Recorder_Defines.h"
using namespace std;
using namespace cv;
int main ( int argc , char*argv )
{
int acquireimage = 10;
// 从相机得到图片长、宽资讯
int iRet;
WORD imgWidth = 0, imgHeight = 0;
iRet = Pco_RecorderGetSetting( ...,&imgWidth,&imgHeight );
// 为图片分配内存
WORD *imgBuffer = NULL;
imgBuffer = new WORD[(__int64)imgWidth*(__int64)imgHeight];
iRet = RecorderGetStatus( ... );
while ( isRunning )
if ( imagecount > 0 )
{
iRet = ( ... , imgWidth, imgHeight,imgBuffer );
return ( imgWidth );
cv:: Mat cv_image;
cv_image = (cv:: Size( imgWidth , imgHeight ) , CV_16UC1 , imgBuffer , cv:: Ma
t :: AUTO_STEP );
cv:: nameWindow ( "image", CV_WINDOW_NORMAL );
imshow ( "image" , cv_image);
waitKey(1);
for (unsigned int i = 0; i < acquireimage; i++ )
{
string a = " C:/desktop/folder/img " + to_string(i) + ".tif" ;
imwrite( a ,cv_image )
}
}
return 0;
}