[ Video ]
[ About ]
名古屋にも雪が降りまして、仕事の帰り道で、足跡ってOpenCVのエッジ処理で切り抜けるんじゃないかと?ひらめきました。
帰宅後は、雪道でいかに安全にノートPCを担ぎながら撮影をする方法を考えていましたが、リアルタイムでする必要もないことに何とか気づく事が出来たので、朝の通勤時にスマートフォンで撮影しました。贅沢を言うと、犬の肉球跡が欲しかった。。。
緑色の線が抽出した輪郭です。元の画像と重ねてありますので、輪郭を拾えてない部分とかもわかるかと思います。
やりたい事はOpenCVのみで終わりますが、openFrameworksと言い張っていこうと思います。
[ Source ]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
#pragma once #include "ofMain.h" #include "ofFbo.h" #include "opencv2/opencv.hpp" class ofApp : public ofBaseApp { public: void setup(); void update(); void draw(); void keyPressed(int key) {}; void keyReleased(int key) {}; void mouseMoved(int x, int y) {}; void mouseDragged(int x, int y, int button) {}; void mousePressed(int x, int y, int button) {}; void mouseReleased(int x, int y, int button) {}; void windowResized(int w, int h) {}; void dragEvent(ofDragInfo dragInfo) {}; void gotMessage(ofMessage msg) {}; ofFbo fbo; cv::VideoCapture cap; cv::Size cap_size; cv::Mat frame; ofImage image; // 動画データ出力用 cv::VideoWriter writer; }; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup() { ofBackground(0); ofSetWindowTitle("Insta"); this->cap.open("snow.mp4"); this->cap_size = cv::Size(this->cap.get(CV_CAP_PROP_FRAME_WIDTH), this->cap.get(CV_CAP_PROP_FRAME_HEIGHT)); int frame_rate = this->cap.get(CV_CAP_PROP_FPS); ofSetFrameRate(frame_rate); // this->writer = cv::VideoWriter("out.mp4", CV_FOURCC('H', '2', '6', '4'), frame_rate, this->cap_size); this->image.allocate(this->cap_size.width, this->cap_size.height, OF_IMAGE_COLOR); this->frame = cv::Mat(this->image.getHeight(), this->image.getWidth(), CV_MAKETYPE(CV_8UC3, this->image.getPixels().getNumChannels()), this->image.getPixels().getData(), 0); this->fbo.allocate(ofGetWidth(), ofGetHeight()); } //-------------------------------------------------------------- void ofApp::update() { this->cap >> this->frame; if (this->frame.empty()) { return; } cv::Mat gray, canny, color_canny; cv::cvtColor(this->frame, gray, CV_RGB2GRAY); cv::Canny(gray, canny, 50, 150); for (int y = 0; y < canny.rows; y += 1) { unsigned char* value = &canny.at<unsigned char>(y, 0); for (int x = 0; x < canny.cols; x += 1) { if (*value > 0) { this->frame.at<cv::Vec3b>(y, x) = cv::Vec3b(0, 255, 0); } value++; } } // writer << this->frame; cv::cvtColor(this->frame, this->frame, CV_BGR2RGB); this->fbo.begin(); ofClear(0); ofSetColor(255); this->image.update(); this->image.draw(0, 0); this->fbo.end(); } //-------------------------------------------------------------- void ofApp::draw() { this->fbo.draw(0, 0); } //======================================================================== int main() { ofSetupOpenGL(1920, 1080, OF_WINDOW); ofRunApp(new ofApp()); } |