摘要: 1. MVE 项目主页 https://www.gcc.tu-darmstadt.de/home/proj/mve/ Github地址 https://github.com/simonfuhrmann/mve #!/bin/bash workspace_path=/root/test_result/ 阅读全文
posted @ 2020-06-25 01:11 coffee_tea_or_me 阅读(765) 评论(0) 推荐(0) 编辑
摘要: 0. 下载源码到本地 freeImage源码包下载网站 http://downloads.sourceforge.net/freeimage/FreeImage3170.zip wget http://downloads.sourceforge.net/freeimage/FreeImage3170 阅读全文
posted @ 2020-06-25 00:44 coffee_tea_or_me 阅读(1298) 评论(0) 推荐(0) 编辑
摘要: 1. 标准输出和错误重定向 ./main >> log.txt 2>&1 ./main 指的是命令行执行的程序指令 >> 指的是追加写入文件,如果要覆盖写入的话使用> log.txt 指的是重定向的文件,不在控制台输出显示,直接输出到该文件之中 2>&1 指的是标准输出和标准错误都输出到文件,如果不 阅读全文
posted @ 2020-06-25 00:04 coffee_tea_or_me 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1. openMVG 比较简单,直接按照 build wiki 的步骤一步一步来就没问题。 Instruction: Build on Linux # Install the required external libraries. sudo apt-get install libpng-dev l 阅读全文
posted @ 2020-06-25 00:02 coffee_tea_or_me 阅读(2435) 评论(0) 推荐(0) 编辑