Skip to content

Instantly share code, notes, and snippets.

@amiltonwong
Created September 26, 2016 14:04
Show Gist options
  • Save amiltonwong/4c5af7e44137151e2743537ca1a0f69c to your computer and use it in GitHub Desktop.
Save amiltonwong/4c5af7e44137151e2743537ca1a0f69c to your computer and use it in GitHub Desktop.
#include "rgbdframe.h"
using namespace rgbd_tutor;
int main()
{
ParameterReader para;
FrameReader fr(para);
while( RGBDFrame::Ptr frame = fr.next() )
{
cv::imshow( "image", frame->rgb );
cv::waitKey(1);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment