Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Analyst WebApp
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fidentis
Analyst WebApp
Commits
4213b08a
There was an error fetching the commit references. Please try again later.
Commit
4213b08a
authored
3 years ago
by
Radek Ošlejšek
Browse files
Options
Downloads
Patches
Plain Diff
Final minor improvements
parent
8de43d65
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MeshModel/jshell.history
+0
-0
0 additions, 0 deletions
MeshModel/jshell.history
MeshModel/src/main/java/cz/fidentis/analyst/feature/services/FeaturePointFpExporter.java
+2
-2
2 additions, 2 deletions
...ntis/analyst/feature/services/FeaturePointFpExporter.java
with
2 additions
and
2 deletions
MeshModel/jshell.history
deleted
100644 → 0
+
0
−
0
View file @
8de43d65
This diff is collapsed.
Click to expand it.
MeshModel/src/main/java/cz/fidentis/analyst/feature/services/FeaturePointFpExporter.java
+
2
−
2
View file @
4213b08a
...
...
@@ -25,12 +25,12 @@ public class FeaturePointFpExporter {
* @throws FileNotFoundException
* @throws IOException
*/
public
static
void
exportFeaturePointsToFP
(
List
<
FeaturePoint
>
featurePointList
,
String
objectName
)
throws
IOException
{
public
static
void
exportFeaturePointsToFP
(
List
<
FeaturePoint
>
featurePointList
,
String
objectName
)
throws
IOException
{
File
fpOutputFile
=
new
File
(
String
.
format
(
"%s_landmarks.fp"
,
objectName
));
writeToFile
(
featurePointList
,
fpOutputFile
,
objectName
);
}
p
ublic
static
void
writeToFile
(
List
<
FeaturePoint
>
featurePointList
,
File
fpOutputFile
,
String
objectName
)
throws
IOException
{
p
rotected
static
void
writeToFile
(
List
<
FeaturePoint
>
featurePointList
,
File
fpOutputFile
,
String
objectName
)
throws
IOException
{
// CSV is a normal text file, need a writer
try
(
BufferedWriter
bw
=
new
BufferedWriter
(
new
FileWriter
(
fpOutputFile
)))
{
bw
.
write
(
String
.
format
(
"<!--Saved by software Fidentis Analyst--><facialPoints model=\"%s\">"
,
objectName
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment