Skip to content

Commit

Permalink
minor cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mugulmd committed Mar 2, 2023
1 parent f370bab commit eeb803d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/aliceVision/image/imageCaching.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,5 @@ std::string ImageCache::toString() const
return description;
}

}
}
} // namespace image
} // namespace aliceVision
4 changes: 2 additions & 2 deletions src/aliceVision/image/imageCaching.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,5 +436,5 @@ void ImageCache::load(const CacheKey& key)
_info.contentSize += value.memorySize();
}

}
}
} // namespace image
} // namespace aliceVision
4 changes: 2 additions & 2 deletions src/aliceVision/image/resampling.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ namespace image {

/**
** Half sample an image (ie reduce its size by a factor 2) using bilinear interpolation
** @param src input image
** @param out output image
** @param[in] src input image
** @param[out] out output image
**/
template < typename Image >
void ImageHalfSample( const Image & src , Image & out )
Expand Down
4 changes: 2 additions & 2 deletions src/samples/imageCaching/main_imageCaching.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ namespace po = boost::program_options;
int aliceVision_main(int argc, char **argv)
{
// command-line arguments
float capacity = 256;
float maxSize = 1024;
float capacity = 256.f;
float maxSize = 1024.f;
std::vector<std::string> filenames;
std::vector<int> halfSampleLevels;
int defaultHalfSampleLevel = 0;
Expand Down

0 comments on commit eeb803d

Please sign in to comment.