Rohan Mark Gomes

Results 7 comments of Rohan Mark Gomes

```cmake cmake_minimum_required(VERSION 2.8.12) set(cmake_cxx_flags "-Ofast -std=c++14 -DOPENCV -DGPU -DCUDNN") find_package(OpenCV REQUIRED) find_package(CUDA REQUIRED) include_directories(/home/rohan/Downloads/Compressed/darknet/src) include_directories(/home/rohan/Downloads/Compressed/darknet/include) link_directories(${CMAKE_CURRENT_SOURCE_DIR}) macro(add_code name) add_executable(arapaho ${CMAKE_CURRENT_SOURCE_DIR}/${name}.cpp ${CMAKE_CURRENT_SOURCE_DIR}/arapaho.cpp) target_link_libraries(arapaho ${OpenCV_LIBS} darknet-cpp-shared tbb ${CUDA_LIBRARIES} ${CUDA_CUBLAS_LIBRARIES} cudnn) endmacro() add_code(test)...

It was silly on my part, but even after changing it is running fine but not detecting anything. This is my current **CMakeLists.txt**: ``` cmake_minimum_required(VERSION 2.8.12) set(cmake_cxx_flags "-Ofast -std=c++14 -DOPENCV...

**CMakeOutput.log** ``` The system is: Linux - 5.2.9-arch1-1-ARCH - x86_64 Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. Compiler: /usr/bin/cc Build flags: Id flags: The output was: 0 Compilation...

Could you find the problem?

I'll test it shortly, currently I'm using OpenCV 3.

Definitely not a bad idea. We have an increment_age function which is actually responsible for increasing the age and all the stats. We can write a decrement_age function though to...

The first approach of keeping a copy of the stats of every organism at every instant is the right way but it is absolutely impractical as it can quickly blow...