2019年4月12日 星期五

瑋的日常筆記 week08

freeglut的網址點這個取的資料
小葉的壓縮檔資料放置壓縮檔得地方


第一段程式碼
#include <opencv/highgui.h>///使用open CV的HIGH GUI 介面
int main()
{
    IplImage * img=cvLoadImage("image.jpg");///讀圖檔
    cvShowImage("opencv Window", img);///秀圖
    cvWaitKey(0);///等你按鍵

}

這是用不同的專案要將圖放入專案資料夾
第二段程式碼
#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("opencv Window", img);///秀圖
    cvWaitKey(0);///等你按鍵

    glutInit(&argc,argv);
    glutInitDisplayMode(GLUT_DOUBLE|GLUT_DEPTH);
    glutCreateWindow("Week08 texture");

    glutDisplayFunc(display);

    glutMainLoop();
}

用GLUT入圖要將圖放入freeglut裡面的bin

沒有留言:

張貼留言