Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
Java_fleet_detection
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nguyeng Hoang Giang
Java_fleet_detection
Commits
0033e091
Commit
0033e091
authored
Mar 15, 2022
by
Nguyeng Hoang Giang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://coreteam.ddns.net:8929/NguyenHoangGiang/java_fleet_detection
parents
f58ec6d7
0a47ed9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
README.md
README.md
+33
-0
No files found.
README.md
0 → 100644
View file @
0033e091
input: ảnh của mỗi cam, và 4 điểm/side. Mỗi cam sẽ có 3 side. 4 điểm của mỗi side là 4 góc của side đó. Side là các mặt của khối thể tích cần tính.
output: mỗi mặt trả về một binary matrix, dùng để tính diện tích vùng có giá trị 0.
//Khoi tạo 1 cam, nhận ảnh tĩnh vào
Fleet_single_cam cam = new Fleet_single_cam("a","5b8ab6b219c9d6978fd827.jpg", 0.5, 5, 5, 4,false);
//create front side, add 4 đỉnh của side front vào
cam.add_side("front", new float[][]{
new float[]{687, 8},
new float[]{1264, 54},
new float[]{1027, 432},
new float[]{672, 305}
});
//create mặt side, add 4 đỉnh của mặt side vào
cam.add_side("side", new float[][]{
new float[]{12, 132},
new float[]{687, 8},
new float[]{672, 305},
new float[]{275, 497}
});
//create bottom side, add 4 đỉnh của side bottom vào
cam.add_side("bottom", new float[][]{
new float[]{672, 305},
new float[]{1027, 432},
new float[]{817, 923},
new float[]{275, 497}
});
//tạo matrix để tính thể tích
cam.refine_matrix();
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment