Git Product home page Git Product logo

vectorone's People

Contributors

rob2048 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

vectorone's Issues

Instructions/Guidelines

Hi, discovered this looking for something open-source that does mocap. Reading through the code it's quite impressive how close this is. However, getting it to function without diving deep into code is what I'm struggling with. I've managed to get the software working along with getting the cameras connected, however, I'm unsure how to use the actual software after starting the calibration process. Would you mind posting a guide on how to use it the way you did on your video (https://www.youtube.com/watch?v=4ye_lzx6UWw)? I would be willing to put many hours into this to make it more of a complete open source mocap solution as well as develop a readme and promote to other developers to get on board with this.

I've developed a couple of mocap systems using multiple Xbox Kinects along with a blender plugin as the main software, but the results are not the greatest and cleanup is more trouble than its worth, but something like this would work really well.

Error on Camera Connect.

        printf(JSON);
	QJsonObject trackerObj = QJsonDocument::fromJson(JSON).object();

	name = trackerObj["name"].toString();
	exposure = trackerObj["exposure"].toInt();
	iso = trackerObj["iso"].toInt();

	QJsonArray jsonIntrinMat = trackerObj["intrinsic"].toObject()["camera"].toArray();
	QJsonArray jsonIntrinDist = trackerObj["intrinsic"].toObject()["distortion"].toArray();
	QJsonArray jsonExtrinProj = trackerObj["extrinsic"].toObject()["pose"].toArray();

	distCoefs = cv::Mat::zeros(5, 1, CV_64F);
	distCoefs.at<double>(0) = jsonIntrinDist[0].toDouble();
	distCoefs.at<double>(1) = jsonIntrinDist[1].toDouble();
	distCoefs.at<double>(2) = jsonIntrinDist[2].toDouble();
	distCoefs.at<double>(3) = jsonIntrinDist[3].toDouble();
	distCoefs.at<double>(4) = jsonIntrinDist[4].toDouble();

	camMat = cv::Mat::eye(3, 3, CV_64F);
	camMat.at<double>(0, 0) = jsonIntrinMat[0].toDouble();
	camMat.at<double>(1, 0) = jsonIntrinMat[1].toDouble();
	camMat.at<double>(2, 0) = jsonIntrinMat[2].toDouble();
	camMat.at<double>(0, 1) = jsonIntrinMat[3].toDouble();
	camMat.at<double>(1, 1) = jsonIntrinMat[4].toDouble();
	camMat.at<double>(2, 1) = jsonIntrinMat[5].toDouble();
	camMat.at<double>(0, 2) = jsonIntrinMat[6].toDouble();
	camMat.at<double>(1, 2) = jsonIntrinMat[7].toDouble();
	camMat.at<double>(2, 2) = jsonIntrinMat[8].toDouble();

Culprit.

distCoefs.at<double>(0) = jsonIntrinDist[0].toDouble();

Error

Schematics / Parts List for Camera

Hello,

I found this project on hackaday.io. I know it was never finished but it's interesting me.

Is there a way to have the files required to make the camera : the custom PCB, custom plastic parts along with a parts list.

Regards,

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.