# ACMH **Repository Path**: yezhiyun/ACMH ## Basic Information - **Project Name**: ACMH - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-07 - **Last Updated**: 2022-03-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ACMH [News] The code for [ACMM](https://github.com/GhiXu/ACMM) is released!!! [News] The code for [ACMP](https://github.com/GhiXu/ACMP) is released!!! [News] The code for [ACMMP](https://github.com/GhiXu/ACMMP) is released!!! ## About ACMH is a simple yet effective PatchMatch MVS method, which is the base model of [ACMM](https://arxiv.org/abs/1904.08103), [ACMP](https://arxiv.org/abs/1912.11744) and ACMMP. If you find this project useful for your research, please cite: ``` @article{Xu2019ACMM, title={Multi-Scale Geometric Consistency Guided Multi-View Stereo}, author={Xu, Qingshan and Tao, Wenbing}, journal={Computer Vision and Pattern Recognition (CVPR)}, year={2019} } @article{Xu2020ACMP, title={Planar Prior Assisted PatchMatch Multi-View Stereo}, author={Xu, Qingshan and Tao, Wenbing}, journal={AAAI Conference on Artificial Intelligence (AAAI)}, year={2020} } ``` ## Dependencies The code has been tested on Ubuntu 14.04 with GTX Titan X. * [Cuda](https://developer.nvidia.com/zh-cn/cuda-downloads) >= 6.0 * [OpenCV](https://opencv.org/) >= 2.4 * [cmake](https://cmake.org/) ## Usage * Complie ACMH ``` cmake . make ``` * Test ``` Use script colmap2mvsnet_acm.py to convert COLMAP SfM result to ACMH input Run ./ACMH $data_folder to get reconstruction results ``` ## Acknowledgemets This code largely benefits from the following repositories: [Gipuma](https://github.com/kysucix/gipuma) and [COLMAP](https://colmap.github.io/). Thanks to their authors for opening source of their excellent works.