# jf_crowd_count **Repository Path**: jetflow/jf_crowd_count ## Basic Information - **Project Name**: jf_crowd_count - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-11-09 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 说明 * 工程在mxnet框架下实现人群计数算法 * 工程既可以在ROS环境中使用,也可以在STD C++环境中使用 # 依赖项 * mxnet 1.2.0 (默认安装在/usr/local/lib/路径下) # 如何使用 ## 在ROS中使用 ### 使用方法 编译并安装:catkin_make install -j{nproc} 编译成功后,通过rospack list命令,可以看到以下程序包: * jf_crowd_count ## 在STD C++中使用 ### 使用方法 mkdir build cd build cmake .. -DUSE_ROS=OFF make -j{nproc} # 配置与运行 ```cpp //使用0号显卡 int ngpuid=0; int batch=1; //网络结构输入层通道数 int num_channels_=1; //网络结构输入层尺寸 int input_h=1080; int input_w=1920; //网络结构输入层名称 string input_name="1"; ```