# pioneer **Repository Path**: eglwang/pioneer ## Basic Information - **Project Name**: pioneer - **Description**: about image measuring. height, slope angle, image processing and some utility tools. _ _ _ _ _ _ _ _ _ _ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-07 - **Last Updated**: 2022-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Pioneer ## Notices A pioneering project about image measurement. This project is no longer maintained. ## Introduction ### skeletons.py A simple but experimental program to locations special tubes from the image of a rack. ### slope_test.py A demonstrating program showing how to determine the angles of tubes in the pictures, given two external parameters. ### assistant.py A module consist of some utility functions, which are widely used in slope_test.py ### utility.py Some contributing functions for OpenCV, which are helpful in debuging. ### Basic git cmd Git global configurations: git config --global user.name "YOUR Name" git config --global user.email "YOUR EMAIL" crate a git repository: mkdir pioneer cd pioneer git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/eglwang/pioneer.git git push -u origin "master" Already have a repository? cd existing_git_repo git remote add origin https://gitee.com/eglwang/pioneer.git git push -u origin "master"