在進(jìn)行圖像處理的時(shí)候,經(jīng)常要進(jìn)行圖像的剔除。下面我們學(xué)習(xí)一下opencv刪除圖像的函數(shù)。
//int result = remove(img_path[i].c_str()); //絕對(duì)或者相對(duì)路徑都可以
int result = remove("1.jpg"); //絕對(duì)或者相對(duì)路徑都可以
if (result == 0)
cout << "delete succeeded!刪除圖片成功" << endl;
else
cout << "delete failed! 刪除圖片失敗" << endl;
具體應(yīng)用示例
為了方便大家理解如何使用,下面我舉一個(gè)例子,在相機(jī)標(biāo)定的時(shí)候進(jìn)行圖像不符合規(guī)范的自動(dòng)刪除
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <IOStream>
#include <fstream>
#include <iostream>
#include <stdlib.h> //srand()和rand()函數(shù)
#include<windows.h>
using namespace cv;
using namespace std;
#define debug_show_picture 1 //是否顯示部分調(diào)試圖片,方便調(diào)試
#define debug_save_shipin 0 //是否保存結(jié)果視頻
/**************** 打印相關(guān)組件 start ! ********************************************************************/
/*打印等級(jí),修改后面的宏定義可以改變函數(shù)輸出打印等級(jí)*/
#define ALG_PRTINT_LEVER PRINT_LEVEL_UNLIMIT
#define ALG_PRTINT(...) SAL_printf(__VA_ARGS__)
#define ALG_PRT(...) ALG_PRTINT(__FUNCTION__, __LINE__, PRINT_LEVEL_UNLIMIT, __VA_ARGS__)
#define ALG_DBG(...) ALG_PRTINT(__FUNCTION__, __LINE__, PRINT_LEVEL_DBG, __VA_ARGS__)
#define ALG_WAR(...) ALG_PRTINT(__FUNCTION__, __LINE__, PRINT_LEVEL_WRN, __VA_ARGS__)
#define ALG_ERR(...) ALG_PRTINT(__FUNCTION__, __LINE__, PRINT_LEVEL_ERR, __VA_ARGS__)
/***********************************************************************************************
* @enum HAT_SAL_PRT_LEVEL_E
* @brief 打印輸出的等級(jí)
***************************************************************************************************/
typedef enum _PRT_LEVEL_E_
{
PRINT_LEVEL_ERR = 0, /*錯(cuò)誤打印信息*/
PRINT_LEVEL_WRN = 1, /*警告打印信息*/
PRINT_LEVEL_DBG = 2, /*調(diào)試打印信息*/
PRINT_LEVEL_UNLIMIT = 3, /*無限制打印信息*/
PRINT_LEVEL_NOPRT = 4, /*沒有打印信息*/
} PRT_LEVEL_E;
/*******************************************************************************
Function: SAL_printf
Description: 該函數(shù)能夠通過設(shè)置的打印等級(jí)ALG_PRTINT_LEVER,來控制是否輸出相關(guān)語句
Input:
Output:
Return:
0: Successful
ohters: Failed
*******************************************************************************/
void SAL_printf(const char *pFun, UINT line, PRT_LEVEL_E levelParam, const char *fmt, ...)
{
static INT8 g_printfInfo[4][16] = { "ERR", "WAR", "DBG", "INF" };
va_list p;
if (ALG_PRTINT_LEVER == PRINT_LEVEL_NOPRT || levelParam == PRINT_LEVEL_NOPRT)
{
return;
}
if (levelParam <= ALG_PRTINT_LEVER)
{
va_start(p, fmt);
printf("[ALG][%s][%s][%4d] ", g_printfInfo[levelParam], pFun, line);
vprintf(fmt, p);
va_end(p);
}
}
/****************************** 打印相關(guān)組件 end *************************************************************************/
class Ve
{
public:
vector<string> ReadImage(cv::String pattern);
};
vector<string> Ve::ReadImage(cv::String pattern)
{
vector<string> temp;
vector<cv::String> fn;
glob(pattern, fn, false);
size_t count = fn.size(); //number of png files in images folder
for (size_t i = 0; i < count; i++)
{
temp.push_back(fn[i]);
}
return temp;
}
void main()
{
ofstream fout("caliberation_result.txt"); /* 保存標(biāo)定結(jié)果的文件 */
//讀取每一幅圖像,從中提取出角點(diǎn),然后對(duì)角點(diǎn)進(jìn)行亞像素精確化
cout << "開始提取角點(diǎn)………………n";
int image_count = 0; /* 圖像數(shù)量 */
Size image_size; /* 圖像的尺寸 */
Size board_size = Size(8, 11); /* 標(biāo)定板上每行、列的角點(diǎn)數(shù) */
vector<Point2f> image_points_buf; /* 緩存每幅圖像上檢測(cè)到的角點(diǎn) */
vector<vector<Point2f>> image_points_seq; /* 保存檢測(cè)到的所有角點(diǎn) */
int count = -1;//用于存儲(chǔ)角點(diǎn)個(gè)數(shù)。
//while (getline(fin, filename))
//{
cv::String pattern = "./data/0223_2che/2che_huoche_video4/*.jpg";
Ve ve;
vector<string> img_path = ve.ReadImage(pattern);
for (int i = 0; i < img_path.size(); i++)
{
image_count++;
// 用于觀察檢驗(yàn)輸出
//cout << "image_count = " << image_count << endl;
/* 輸出檢驗(yàn)*/
//cout << "-->count = " << count << endl;
Mat imageInput = imread(img_path[i]);
if (imageInput.empty())
{
ALG_ERR("can not open pic,圖片 %s 打開失敗n", img_path[i].c_str());
cout << "can not open pic!n";
Sleep(100000);//睡眠一下,不至于窗口跳出
exit(-1);
}
Mat imageInput_copy = imageInput.clone(); //校正后輸出圖片
if (image_count == 1) //讀入第一張圖片時(shí)獲取圖像寬高信息
{
image_size.width = imageInput.cols;
image_size.height = imageInput.rows;
cout << "image_size.width = " << image_size.width << endl;
cout << "image_size.height = " << image_size.height << endl;
}
//printf("輸出結(jié)果:%sn", filename.c_str());
/* 提取角點(diǎn) */
if (0 == findChessboardCorners(imageInput, board_size, image_points_buf))
{
cout << "can not find chessboard corners!n"; //找不到角點(diǎn)
ALG_ERR("圖片: %s 找不到角點(diǎn),請(qǐng)檢查或者更換該圖片n", img_path[i].c_str());
int result = remove(img_path[i].c_str()); //絕對(duì)或者相對(duì)路徑都可以
if (result == 0)
cout << "delete succeeded!刪除圖片成功" << endl;
else
cout << "delete failed! 刪除圖片失敗" << endl;
continue;
}
else
{
ALG_PRT("正在提取圖片%s的角點(diǎn),image_count=%dn", img_path[i].c_str(), image_count);
Mat view_gray;
cvtColor(imageInput, view_gray, COLOR_RGB2GRAY);
/* 亞像素精確化 */
find4QuadCornerSubpix(view_gray, image_points_buf, Size(5, 5)); //對(duì)粗提取的角點(diǎn)進(jìn)行精確化
//cornerSubPix(view_gray,image_points_buf,Size(5,5),Size(-1,-1),TermCriteria(CV_TERMCRIT_EPS+CV_TERMCRIT_ITER,30,0.1));
image_points_seq.push_back(image_points_buf); //保存亞像素角點(diǎn)
/* 在圖像上顯示角點(diǎn)位置 */
drawChessboardCorners(view_gray, board_size, image_points_buf, false); //用于在圖片中標(biāo)記角點(diǎn)
namedWindow("Camera Calibration", 0);//創(chuàng)建窗口
imshow("Camera Calibration", view_gray);//顯示圖片
waitKey(5);//暫停0.5S
//這種初始化點(diǎn)的方式也可以
for (int i = 0; i < image_points_buf.size(); i++)
{
Point p2;
p2.x = image_points_buf[i].x;
p2.y = image_points_buf[i].y;
//畫實(shí)心點(diǎn)
circle(imageInput_copy, p2, 8, Scalar(0, 0, 255), -1); //第五個(gè)參數(shù)我設(shè)為-1,表明這是個(gè)實(shí)點(diǎn)。
}
namedWindow("imageInput_copy", 0);//創(chuàng)建窗口
imshow("imageInput_copy", imageInput_copy);//顯示圖片
waitKey(5);//暫停0.5S
}
}
ALG_PRT("所有圖片檢查完畢n");
waitKey(5000000000000);//暫停0.5S
}