使用opencv按图片修改时间进行图片读取

本文介绍如何利用OpenCV根据图片的修改时间顺序进行读取操作,通过代码实例详细阐述具体步骤。
摘要由CSDN通过智能技术生成

直接上代码,注释很详细

#include <sys/stat.h> 
#include <string>
#include <algorithm>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/opencv.hpp>
#define CV_LOAD_IMAGE_COLOR 1


// st_mtime按修改时间排序
struct img_sorted_by_modify_time {
    bool operator() (const std::string& p1, const std::string& p2) {
        struct stat attribp1;
        struct stat attribp2;  
        stat(p1.c_str(), &attribp1);
        stat(p2.c_str(), &attribp2);                       
        return attribp1.st_mtime < attribp2.st_mtime; 
    }
};


// 主函数
int main(int argc, char* argv[]) {
    //std::string input_img_path_parent = argv[1];
    // 定义排序路径
    std::string input_img_path_parent = "images";
    std::string input_img_path;
    std::vector<std::string> f
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值