Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Mansfield <sftrabbit@gmail.com>2013-09-14 14:22:56 +0400
committerJoseph Mansfield <sftrabbit@gmail.com>2013-09-14 14:22:56 +0400
commit7114ab18a2f58f2130e3a0986691900281adfade (patch)
treed88cba6a85306d66839b11c365507e0a2125bb3e
parent63656781098e1443cd3f89fa435688727076eb33 (diff)
Code cleanup: spelling correction
-rw-r--r--extern/libmv/libmv/simple_pipeline/pipeline.cc32
1 files changed, 16 insertions, 16 deletions
diff --git a/extern/libmv/libmv/simple_pipeline/pipeline.cc b/extern/libmv/libmv/simple_pipeline/pipeline.cc
index 859efc3c8f9..20f82e43262 100644
--- a/extern/libmv/libmv/simple_pipeline/pipeline.cc
+++ b/extern/libmv/libmv/simple_pipeline/pipeline.cc
@@ -124,7 +124,7 @@ struct ProjectivePipelineRoutines {
} // namespace
-static void CompleteReconstructionLogProress(
+static void CompleteReconstructionLogProgress(
ProgressUpdateCallback *update_callback,
double progress,
const char *step = NULL) {
@@ -176,8 +176,8 @@ void InternalCompleteReconstruction(
LG << "Got " << reconstructed_markers.size()
<< " reconstructed markers for track " << track;
if (reconstructed_markers.size() >= 2) {
- CompleteReconstructionLogProress(update_callback,
- (double)tot_resects/(max_image));
+ CompleteReconstructionLogProgress(update_callback,
+ (double)tot_resects/(max_image));
if (PipelineRoutines::Intersect(reconstructed_markers,
reconstruction)) {
num_intersects++;
@@ -188,9 +188,9 @@ void InternalCompleteReconstruction(
}
}
if (num_intersects) {
- CompleteReconstructionLogProress(update_callback,
- (double)tot_resects/(max_image),
- "Bundling...");
+ CompleteReconstructionLogProgress(update_callback,
+ (double)tot_resects/(max_image),
+ "Bundling...");
PipelineRoutines::Bundle(tracks, reconstruction);
LG << "Ran Bundle() after intersections.";
}
@@ -215,8 +215,8 @@ void InternalCompleteReconstruction(
LG << "Got " << reconstructed_markers.size()
<< " reconstructed markers for image " << image;
if (reconstructed_markers.size() >= 5) {
- CompleteReconstructionLogProress(update_callback,
- (double)tot_resects/(max_image));
+ CompleteReconstructionLogProgress(update_callback,
+ (double)tot_resects/(max_image));
if (PipelineRoutines::Resect(options, reconstructed_markers,
reconstruction, false)) {
num_resects++;
@@ -228,9 +228,9 @@ void InternalCompleteReconstruction(
}
}
if (num_resects) {
- CompleteReconstructionLogProress(update_callback,
- (double)tot_resects/(max_image),
- "Bundling...");
+ CompleteReconstructionLogProgress(update_callback,
+ (double)tot_resects/(max_image),
+ "Bundling...");
PipelineRoutines::Bundle(tracks, reconstruction);
}
LG << "Did " << num_resects << " resects.";
@@ -252,8 +252,8 @@ void InternalCompleteReconstruction(
}
}
if (reconstructed_markers.size() >= 5) {
- CompleteReconstructionLogProress(update_callback,
- (double)tot_resects/(max_image));
+ CompleteReconstructionLogProgress(update_callback,
+ (double)tot_resects/(max_image));
if (PipelineRoutines::Resect(options, reconstructed_markers,
reconstruction, true)) {
num_resects++;
@@ -264,9 +264,9 @@ void InternalCompleteReconstruction(
}
}
if (num_resects) {
- CompleteReconstructionLogProress(update_callback,
- (double)tot_resects/(max_image),
- "Bundling...");
+ CompleteReconstructionLogProgress(update_callback,
+ (double)tot_resects/(max_image),
+ "Bundling...");
PipelineRoutines::Bundle(tracks, reconstruction);
}
}