# GetSimilarCharacter **Repository Path**: ivan_allen/GetSimilarCharacter ## Basic Information - **Project Name**: GetSimilarCharacter - **Description**: 寻找相似汉字 - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-11-09 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Requirements - g++ - freetype2 - thrift # Building - make - make mkft - make find - make query - make mktbl # Running ## Generate similar char table - Generate features file ``` $ ./mkft ``` It will create a file named `features.dat` - Create symbol link ``` $ ln -sf features.dat features ``` - Generate Chinese character table ``` $ ./mktbl ``` It will create a file named `chartable` ## Query ### Fast query ``` $ ./query ``` You can excute this command to query similar char fast. ### Originally query ``` $ ./findsimilar ``` This way would be slowly. ## QueryServer ``` $ cd si_server_demo $ make ```