下載[win32]、[data]、glut32.dll
完成資料夾如圖,並打開Texture.exe
(二)
https://sourceforge.net/projects/opencvlibrary/files/opencv-win/2.1/
新增Project >
#include <opencv/highgui.h> int main() { IplImage * img=cvLoadImage("image.jpg"); cvShowImage("opencv Window", img); cvWaitKey(0); }
依序完成以下三章截圖
(1) |
(2) |
(3) |
下載地球圖片,命名image.jpg 程式即可跑出下圖!
(三)
下載freeglut新增一個glut檔
重複(1)、(2)、(3)
在freeglut > bin 資料夾加入一張圖片命名為:earth.jpg
程式碼完成後跑出第一張圖(如上)
關閉之後出現下圖
程式碼:
#include <GL/glut.h> #include <opencv/highgui.h> void display() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glutSolidTeapot( 0.3 ) ; glutSwapBuffers(); } int main(int argc, char** argv) { IplImage * img=cvLoadImage("earth.jpg"); cvShowImage("another Window", img); cvWaitKey(0); glutInit(&argc, argv); glutInitDisplayMode(GLUT_DOUBLE | GLUT_DEPTH); glutCreateWindow("week08 Texture"); glutDisplayFunc(display); glutMainLoop(); }
沒有留言:
張貼留言