Giter VIP home page Giter VIP logo

Comments (5)

deqings avatar deqings commented on May 18, 2024

You can refer to Table 7 in our paper https://arxiv.org/pdf/1709.02371.pdf for the training time using a single NVIDIA Pascal TitanX GPU.

from pwc-net.

TusharNimbhorkar avatar TusharNimbhorkar commented on May 18, 2024

Thanks for the reply

from pwc-net.

JiamingSuen avatar JiamingSuen commented on May 18, 2024

I wonder if the training time mentioned in Table 7 includes all the dataset training(Chairs + Things + Sintel)? or just on FlyingChairs, thanks!

from pwc-net.

ChaoyiXie avatar ChaoyiXie commented on May 18, 2024

//.flo file to remap Mat //String addr: the .flo file name // cv::Mat flo: the Mat that can use function remap in opencv: cv::remap(img1,img2,flo,cv::Mat(),1); void floread(cv::String addr, cv::Mat &flo) { std::ifstream fin(addr, std::ios::binary); char buffer[sizeof(float)]; fin.read(buffer, sizeof(float)); float tar = ((float*)buffer)[0]; if (tar != TAR) { fin.close(); return; } fin.read(buffer, sizeof(int)); int width = ((int*)buffer)[0]; fin.read(buffer, sizeof(int)); int height = ((int*)buffer)[0]; //std::cout << width << "\t" << height << std::endl; flo = cv::Mat(cv::Size(width, height), CV_32FC2); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { if (!fin.eof()) { float * data = flo.ptr<float>(i, j); fin.read(buffer, sizeof(float)); data[0] = j + ((float*)buffer)[0]; fin.read(buffer, sizeof(float)); data[1] = i + ((float*)buffer)[0]; } } } fin.close(); }
the code transform from .flo file to remap Matrix,so that I get the remap image ,but it's not very good ,do you know why??

from pwc-net.

lelelexxx avatar lelelexxx commented on May 18, 2024

I wonder if the training time mentioned in Table 7 includes all the dataset training(Chairs + Things + Sintel)? or just on FlyingChairs, thanks!

Hi, Did you figure it out? I prefer that the training time including training in chairs + things. Because all the model of Sintel,kitti2012,kitti2015 are finetuned from it.

from pwc-net.

Related Issues (20)

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.