OpenCV使用鼠標(biāo)響應(yīng)裁剪圖像
給定一幅圖像,將其中的某一部分興趣區(qū)域裁剪出來,這在PS中很好實(shí)現(xiàn),但是使用openCV如何實(shí)現(xiàn)呢?因此本文主要介紹openCV使用鼠標(biāo)響應(yīng)來裁剪圖像:
一、代碼部分:
#include "stdafx.h" #include "cv.h" #include <highgui.h> #include <stdio.h> IplImage* org = 0; IplImage* img = 0; IplImage* tmp = 0; IplImage* dst = 0; //The mouse cuts the image accordingly void on_mouse( int event, int x, int y, int flags, void* ustc) { static CvPoint pre_pt = {-1,-1}; static CvPoint cur_pt = {-1,-1}; CvFont font; cvInitFont(&font, CV_FONT_HERSHEY_SIMPLEX, 0.5, 0.5, 0, 1, CV_AA); char temp[16]; if(event == CV_EVENT_LBUTTONDOWN) { cvCopy(org,img); sprintf(temp,"(%d,%d)",x,y); pre_pt = cvPoint(x,y); cvPutText(img,temp, pre_pt, &font, cvScalar(0,0, 0, 255)); cvCircle( img, pre_pt, 3,cvScalar(255,0,0,0) ,CV_FILLED, CV_AA, 0 ); cvShowImage( "img", img ); cvCopy(img,tmp); } else if( event == CV_EVENT_MOUSEMOVE && !(flags & CV_EVENT_FLAG_LBUTTON)) { cvCopy(tmp,img); sprintf(temp,"(%d,%d)",x,y); cur_pt = cvPoint(x,y); cvPutText(img,temp, cur_pt, &font, cvScalar(0,0, 0, 255)); cvShowImage( "img", img ); } else if( event == CV_EVENT_MOUSEMOVE && (flags & CV_EVENT_FLAG_LBUTTON)) { cvCopy(tmp,img); sprintf(temp,"(%d,%d)",x,y); cur_pt = cvPoint(x,y); cvPutText(img,temp, cur_pt, &font, cvScalar(0,0,0,255)); cvRectangle(img, pre_pt, cur_pt, cvScalar(0,255,0,0), 1, 8, 0 ); cvShowImage( "img", img ); } else if(event == CV_EVENT_LBUTTONUP) { cvCopy(tmp,img); sprintf(temp,"(%d,%d)",x,y); cur_pt = cvPoint(x,y); cvPutText(img,temp, cur_pt, &font, cvScalar(0,0, 0, 255)); cvCircle( img, cur_pt, 3,cvScalar(255,0,0,0) ,CV_FILLED, CV_AA, 0 ); cvRectangle( img, pre_pt, cur_pt, cvScalar(0,255,0,0), 1, 8, 0 ); cvShowImage( "img", img ); cvCopy(img,tmp); int width=abs(pre_pt.x-cur_pt.x); int height=abs(pre_pt.y-cur_pt.y); if(width==0 || height==0) { cvDestroyWindow("dst"); return; } dst=cvCreateImage(cvSize(width,height),org->depth,org->nChannels); CvRect rect; if(pre_pt.x<cur_pt.x && pre_pt.y<cur_pt.y) { rect=cvRect(pre_pt.x,pre_pt.y,width,height); } else if(pre_pt.x>cur_pt.x && pre_pt.y<cur_pt.y) { rect=cvRect(cur_pt.x,pre_pt.y,width,height); } else if(pre_pt.x>cur_pt.x && pre_pt.y>cur_pt.y) { rect=cvRect(cur_pt.x,cur_pt.y,width,height); } else if(pre_pt.x<cur_pt.x && pre_pt.y>cur_pt.y) { rect=cvRect(pre_pt.x,cur_pt.y,width,height); } cvSetImageROI(org,rect); cvCopy(org,dst); cvResetImageROI(org); cvDestroyWindow("dst"); cvNamedWindow("dst",1); cvShowImage("dst",dst); cvWaitKey(0); cvSaveImage("..\\post_img\\71253.jpg",dst); } } int _tmain(int argc, _TCHAR* argv[]) { org=cvLoadImage("..\\image_norm\\71253.jpg",1); img=cvCloneImage(org); tmp=cvCloneImage(org); cvNamedWindow("img",1); cvSetMouseCallback( "img", on_mouse, 0); cvShowImage("img",img); cvWaitKey(0); cvDestroyAllWindows(); cvReleaseImage(&org); cvReleaseImage(&img); cvReleaseImage(&tmp); cvReleaseImage(&dst); return 0; }
二、程序運(yùn)行效果圖:
將鼠標(biāo)放在原圖上的某一點(diǎn),會(huì)顯示相應(yīng)點(diǎn)的位置坐標(biāo)。至此,openCV使用鼠標(biāo)響應(yīng)實(shí)現(xiàn)圖像裁剪已經(jīng)實(shí)現(xiàn)。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
VS2019配置OpenCV時(shí)找不到Microsoft.Cpp.x64.user的解決方法
這篇文章主要介紹了VS2019配置OpenCV時(shí)找不到Microsoft.Cpp.x64.user的解決方法,需要的朋友可以參考下2020-02-02C++ const引用、臨時(shí)變量 引用參數(shù)詳解
下面小編就為大家?guī)硪黄狢++ const引用、臨時(shí)變量 引用參數(shù)詳解。小編覺得挺不錯(cuò)的現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-01-01Cocos2d-x UI開發(fā)之CCControlSwitch控件類使用實(shí)例
這篇文章主要介紹了Cocos2d-x UI開發(fā)之CCControlSwitch控件類使用實(shí)例,本文代碼中含大量注釋講解了CCControlSwitch控件類的使用,需要的朋友可以參考下2014-09-09C++?通過pqxxlib庫(kù)鏈接?PostgreSql數(shù)據(jù)庫(kù)的詳細(xì)過程
這篇文章主要介紹了C++?通過pqxxlib庫(kù)鏈接?PostgreSql數(shù)據(jù)庫(kù),本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-04-04