Skip to content

Commit

Permalink
Merge pull request #534 from DigitalHolography/dev
Browse files Browse the repository at this point in the history
patch 13.5.1
  • Loading branch information
TitouanGragnic authored Sep 26, 2024
2 parents aeb9f19 + 975c163 commit 8c7da38
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

### 13.5.1

- Adjusted S711 ini configuration file

### 13.5.0

- Create option in CLI for frame skip and fps for mp4 records
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.24)

project(Holovibes
VERSION 13.5.0
VERSION 13.5.1
DESCRIPTION "Holovibes"
LANGUAGES CXX CUDA
)
Expand Down
8 changes: 4 additions & 4 deletions Camera/configs/ametek_s711_euresys_coaxlink_qsfp+.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ NbImagesPerBuffer = 64
NbGrabbers = 2

; Camera settings
FullHeight = 512
Width = 512
FullHeight = 384
Width = 384

; Mono8 | Mono12 | BayerGB8 | BayerGB12
PixelFormat = Mono8
Expand Down Expand Up @@ -50,10 +50,10 @@ FlatFieldCorrection = Off
BalanceWhiteMarker = Off

; Any value in microseconds
ExposureTime = 40
ExposureTime = 27

; Any value in microseconds
CycleMinimumPeriod = 43
CycleMinimumPeriod = 30

; Grabber Stripe Offsets Layout (Default: 0, 8 OR 8, 0 depending of the acquisition cards layout)
Offset0 = 0
Expand Down
2 changes: 1 addition & 1 deletion Camera/include/camera_config.hh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace holovibes::settings
{
// Very ugly to redefine the version in the "camera" folder but we have no choice if we want to define it only once.
#define __HOLOVIBES_VERSION__ "13.5.0"
#define __HOLOVIBES_VERSION__ "13.5.1"
#define __APPNAME__ "Holovibes"

#define __CAMERAS_CONFIG_FOLDER__ "cameras_config"
Expand Down
2 changes: 1 addition & 1 deletion build/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 13.5.0
current_version = 13.5.1
commit = True
message = bump(version): {current_version} -> {new_version}
tag = True
Expand Down
6 changes: 3 additions & 3 deletions dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def goal(func, name: str = None):
@goal
def install(args: GoalArgs) -> int:
build_mode = build_utils.get_build_mode(args.build_mode)
build_mode = "RelWithDebInfo" if build_mode == "Release" else "Debug"
build_mode = "Debug" if build_mode in ["d", "D", "Debug", "debug"] else "RelWithDebInfo"
build_dir = build_utils.get_build_dir(args.build_dir)

# if build dir exist, remove it
Expand Down Expand Up @@ -91,7 +91,7 @@ def conan_build_goal(args: GoalArgs, option: str) -> int:
return 1

build = "--build" if option == "--build" else ""
preset = "conan-debug" if args.build_mode == "Debug" else "conan-relwithdebinfo"
preset = "conan-debug" if args.build_mode in ["d", "D", "Debug", "debug"] else "conan-relwithdebinfo"
cmd = [
os.path.join(DEFAULT_BUILD_FOLDER if args.build_dir is None else args.build_dir, "generators", "conanbuild.bat"), "&&", "cmake", build, "--preset", preset
] + args.goal_args
Expand Down Expand Up @@ -372,7 +372,7 @@ def parse_args():
build.add_argument(
"-b",
choices=RELEASE_OPT + DEBUG_OPT,
default=None,
default="Debug",
help="Choose between Release mode and Debug mode (Default: Debug)",
)
# build.add_argument(
Expand Down

0 comments on commit 8c7da38

Please sign in to comment.