cjweeks / tensorflow-cmake

Integrate TensorFlow with CMake projects effortlessly
MIT License
331 stars 83 forks source link

build file not working #23

Open vaibhav0195 opened 7 years ago

vaibhav0195 commented 7 years ago

Hi i have build an executable using this cmake code but my built file is unable to run giving me permission denied error. how can i run this executable?

Thanks in advance for help

cjweeks commented 6 years ago

It is possible that you don't have execute permission on the newly created file. Simply execute the following to grant this permission: chmod +x <file>. Replace <file> with the generated executable. Let me know if this works for you.

vaibhav0195 commented 6 years ago

hi this was the error of my filesystem i corrected it. but when i tried to integrate opencv3.1.0 using this technique the code compiled correctly but the imread function is not working properly, when i include the tensorflow library in the code. any leads on this error ?

cjweeks commented 6 years ago

I have used OpenCV alongside this tool in the past with no issues. What are the problems / errors you are experiencing with imread?