我正尝试使用CGAL库显示2D Delaunay三角剖分,例如示例here
我的代码如下:
#include <iostream>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Delaunay_triangulation_2.h>
#include <CGAL/draw_triangulation_2.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Delaunay_triangulation_2<K> Triangulation;
typedef Triangulation::Point Point;
int main(void){
Point a(1,1), b(2,1), c(2,2), d(1,2);
Triangulation T;
T.insert(a);
T.insert(b);
T.insert(c);
T.insert(d);
CGAL::draw(T);
return 0;
}
当我尝试使用g++ -o cgalTest.exe cgalTest.cpp -lCGAL -lgmp
编译此代码时,程序成功编译,但是在运行时我得到了Impossible to draw because CGAL_USE_BASIC_VIEWER is not defined
通过在Google上搜索,我发现有人建议使用g++ -o cgalTest.exe cgalTest.cpp -lCGAL -lgmp -DCGAL_USE_BASIC_VIEWER
,这会在编译时产生以下错误:/usr/include/CGAL/Qt/Basic_viewer_qt.h:30:10: fatal error: QApplication: No such file or directory #include <QApplication>
我正在使用ubuntu 19.04,因此我使用sudo apt-get install libcgal-dev
和sudo apt-get install libcgal-qt5-dev
安装了CGAl
我也尝试安装sudo apt-get install libqt5svg5-dev libqt5opengl5-dev
来解决该错误,但无济于事。
我需要安装其他库吗?也许必须以不同的方式进行编译?
谢谢
答案 0 :(得分:0)
好吧,对于面临相同问题的任何人,这是我解决的方法:
首先,我使用locate QApplication
命令在系统上找到QApplication
头文件的位置。在使用sudo updatedb
之前,请确保运行locate
。如果locate
找不到QApplication
的位置,则您缺少qt库。尝试sudo apt-get install qt5-default
和我在问题中提到的其他库,运行sudo updatedb
并再次尝试locate QApplication
。
找到QApplication
的路径时,只需使用-I
选项来指示编译器使用它。这是一个示例g++ -o delaunayTest delaunayTest.cpp -lCGAL -lgmp -lCGAL_Qt5 -DCGAL_USE_BASIC_VIEWER -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets/
(因为在我的情况下,QApplication
位于目录/usr/include/x86_64-linux-gnu/qt5/QtWidgets/
内)
尝试以此进行编译,您可能会遇到另一个头文件错误。使用locate
重复相同的过程,直到没有其他头文件错误为止。
到那时,您可能会遇到undefined reference to symbol
错误。
要解决此问题,请再次使用locate
查找导致错误的文件的位置(例如libQt5OpenGL.so.5
),然后按原样将路径添加到编译命令中(例如{{1 }})以及所有先前的选项。
您也可能会遇到几个g++ -o delaunayTest delaunayTest.cpp /usr/lib/x86_64-linux-gnu/libQt5OpenGL.so.5
错误。只是继续使用相同的方法,直到您一无所获。
此时程序应该正确编译并正确运行。
请注意,如果您安装了多个版本的qt,则以上内容可能无法正常工作(例如,如果您在系统中安装了使用qt的软件,例如MATLAB或anaconda,则会知道,因为undefined reference to symbol
将在上述步骤中为每个文件生成许多路径)。在这种情况下,我建议构建一个虚拟机,下载CGAL库和locate
并按照上面的步骤进行操作,因为这很可能在具有多个qt安装的系统中不起作用。
答案 1 :(得分:0)
使用 CMake 的另一个选项(可能是最简单的)是使用内置脚本生成文件:
cgal_create_CMakeLists -c Qt5
CMakeLists.txt
添加行 add_definitions(-DCGAL_USE_BASIC_VIEWER)
我生成和编辑的 CMakeLists.txt
:
# Created by the script cgal_create_CMakeLists
# This is the CMake script for compiling a set of CGAL applications.
cmake_minimum_required(VERSION 3.1...3.15)
project( tmp_cgal )
# CGAL and its components
find_package( CGAL QUIET COMPONENTS Qt5 )
if ( NOT CGAL_FOUND )
message(STATUS "This project requires the CGAL library, and will not be compiled.")
return()
endif()
add_definitions(-DCGAL_USE_BASIC_VIEWER) # <==== I've added this
# Boost and its components
find_package( Boost REQUIRED )
if ( NOT Boost_FOUND )
message(STATUS "This project requires the Boost library, and will not be compiled.")
return()
endif()
# include for local directory
# include for local package
# Creating entries for all C++ files with "main" routine
# ##########################################################
create_single_source_cgal_program( "b.cpp" )
build
目录:mkdir build
cd build
cmake ..
make
./b
因为我的源文件是 b.cpp
环境:
这些说明应该适用于安装了 libcgal-dev
、libcgal-qt5-dev
和 qtbase5-dev
(当然还有 cmake
、 make
和 g++
)。
主要参考文献: