Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi, all:

I have following API and need to construct them to a image.
After searching on Google I have no clue which third-party I can use to server my goal.

Does anyone have any idea or any reference relevant to the interface?

C++
GetCameraData(
	int nCamDimX,				// x-number of pixels of camera
	int nCamDimY,				// y-number of pixels of camera
	int nCCDBits,				// number of grey-scale bits
	double dCamPixelXOriginal,		// x-size pixels
	double dCamPixelYOriginal,		// y-size pixels
	int *npCamData				// camera frame
	)
Posted
Comments
Maciej Los 25-Dec-14 12:57pm    
What library?
Xiao Ling 26-Dec-14 1:39am    
Where did you get the API from? Did you get the relevant shared library?
Member 9857514 26-Dec-14 1:53am    
I didn't get the relevant library. I'm wondering if there are some libraries use the same interface, so that I can use them to construct image again.

1 solution

hi,
OpenCV is a widely popular computer vision library. maybe you can search in its documentation[^] and you will find what you are looking for.
'GetCameraData' might be just a wrapper that somebody wrote over some OpenCV API so searching for this exact API may not help. Rather try searching for how to form picture from pixels.

OpenCV can be downloaded from here[^]. Its a free download.

hope it helps !
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900