Skip to content

Commit cdef1be

Browse files
committed
v1.0 releasegit add .!
1 parent b59172a commit cdef1be

File tree

2 files changed

+14
-61
lines changed

2 files changed

+14
-61
lines changed

dlclivegui/camera/tisgrabber_windows.py

+13-60
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,7 @@ def __init__(self, **keyargs):
185185
# @sa IC_GetVideoFormatCount
186186
GetVideoFormat = __tisgrabber.IC_GetVideoFormat
187187
GetVideoFormat.restype = C.c_char_p
188-
GetVideoFormat.argtypes = (
189-
GrabberHandlePtr,
190-
C.c_int,
191-
)
188+
GetVideoFormat.argtypes = (GrabberHandlePtr, C.c_int)
192189

193190
# Get the number of the available input channels for the current device.
194191
# A video capture device must have been opened before this call.
@@ -216,10 +213,7 @@ def __init__(self, **keyargs):
216213
# @sa IC_GetInputChannelCount
217214
GetInputChannel = __tisgrabber.IC_GetInputChannel
218215
GetInputChannel.restype = C.c_char_p
219-
GetInputChannel.argtypes = (
220-
GrabberHandlePtr,
221-
C.c_int,
222-
)
216+
GetInputChannel.argtypes = (GrabberHandlePtr, C.c_int)
223217

224218
# Get the number of the available video norms for the current device.
225219
# A video capture device must have been opened before this call.
@@ -248,17 +242,11 @@ def __init__(self, **keyargs):
248242
# @sa IC_GetVideoNormCount
249243
GetVideoNorm = __tisgrabber.IC_GetVideoNorm
250244
GetVideoNorm.restype = C.c_char_p
251-
GetVideoNorm.argtypes = (
252-
GrabberHandlePtr,
253-
C.c_int,
254-
)
245+
GetVideoNorm.argtypes = (GrabberHandlePtr, C.c_int)
255246

256247
SetFormat = __tisgrabber.IC_SetFormat
257248
SetFormat.restype = C.c_int
258-
SetFormat.argtypes = (
259-
GrabberHandlePtr,
260-
C.c_int,
261-
)
249+
SetFormat.argtypes = (GrabberHandlePtr, C.c_int)
262250
GetFormat = __tisgrabber.IC_GetFormat
263251
GetFormat.restype = C.c_int
264252
GetFormat.argtypes = (GrabberHandlePtr,)
@@ -272,21 +260,15 @@ def __init__(self, **keyargs):
272260

273261
StartLive = __tisgrabber.IC_StartLive
274262
StartLive.restype = C.c_int
275-
StartLive.argtypes = (
276-
GrabberHandlePtr,
277-
C.c_int,
278-
)
263+
StartLive.argtypes = (GrabberHandlePtr, C.c_int)
279264

280265
StopLive = __tisgrabber.IC_StopLive
281266
StopLive.restype = C.c_int
282267
StopLive.argtypes = (GrabberHandlePtr,)
283268

284269
SetHWND = __tisgrabber.IC_SetHWnd
285270
SetHWND.restype = C.c_int
286-
SetHWND.argtypes = (
287-
GrabberHandlePtr,
288-
C.c_int,
289-
)
271+
SetHWND.argtypes = (GrabberHandlePtr, C.c_int)
290272

291273
# Snaps an image. The video capture device must be set to live mode and a
292274
# sink type has to be set before this call. The format of the snapped images depend on
@@ -306,10 +288,7 @@ def __init__(self, **keyargs):
306288

307289
SnapImage = __tisgrabber.IC_SnapImage
308290
SnapImage.restype = C.c_int
309-
SnapImage.argtypes = (
310-
GrabberHandlePtr,
311-
C.c_int,
312-
)
291+
SnapImage.argtypes = (GrabberHandlePtr, C.c_int)
313292

314293
# Retrieve the properties of the current video format and sink type
315294
# @param hGrabber The handle to the grabber object.
@@ -363,28 +342,15 @@ def __init__(self, **keyargs):
363342

364343
GetCameraProperty = __tisgrabber.IC_GetCameraProperty
365344
GetCameraProperty.restype = C.c_int
366-
GetCameraProperty.argtypes = (
367-
GrabberHandlePtr,
368-
C.c_int,
369-
C.POINTER(C.c_long),
370-
)
345+
GetCameraProperty.argtypes = (GrabberHandlePtr, C.c_int, C.POINTER(C.c_long))
371346

372347
SetCameraProperty = __tisgrabber.IC_SetCameraProperty
373348
SetCameraProperty.restype = C.c_int
374-
SetCameraProperty.argtypes = (
375-
GrabberHandlePtr,
376-
C.c_int,
377-
C.c_long,
378-
)
349+
SetCameraProperty.argtypes = (GrabberHandlePtr, C.c_int, C.c_long)
379350

380351
SetPropertyValue = __tisgrabber.IC_SetPropertyValue
381352
SetPropertyValue.restype = C.c_int
382-
SetPropertyValue.argtypes = (
383-
GrabberHandlePtr,
384-
C.c_char_p,
385-
C.c_char_p,
386-
C.c_int,
387-
)
353+
SetPropertyValue.argtypes = (GrabberHandlePtr, C.c_char_p, C.c_char_p, C.c_int)
388354

389355
GetPropertyValue = __tisgrabber.IC_GetPropertyValue
390356
GetPropertyValue.restype = C.c_int
@@ -398,12 +364,7 @@ def __init__(self, **keyargs):
398364
# ############################################################################
399365
SetPropertySwitch = __tisgrabber.IC_SetPropertySwitch
400366
SetPropertySwitch.restype = C.c_int
401-
SetPropertySwitch.argtypes = (
402-
GrabberHandlePtr,
403-
C.c_char_p,
404-
C.c_char_p,
405-
C.c_int,
406-
)
367+
SetPropertySwitch.argtypes = (GrabberHandlePtr, C.c_char_p, C.c_char_p, C.c_int)
407368

408369
GetPropertySwitch = __tisgrabber.IC_GetPropertySwitch
409370
GetPropertySwitch.restype = C.c_int
@@ -417,19 +378,11 @@ def __init__(self, **keyargs):
417378

418379
IsPropertyAvailable = __tisgrabber.IC_IsPropertyAvailable
419380
IsPropertyAvailable.restype = C.c_int
420-
IsPropertyAvailable.argtypes = (
421-
GrabberHandlePtr,
422-
C.c_char_p,
423-
C.c_char_p,
424-
)
381+
IsPropertyAvailable.argtypes = (GrabberHandlePtr, C.c_char_p, C.c_char_p)
425382

426383
PropertyOnePush = __tisgrabber.IC_PropertyOnePush
427384
PropertyOnePush.restype = C.c_int
428-
PropertyOnePush.argtypes = (
429-
GrabberHandlePtr,
430-
C.c_char_p,
431-
C.c_char_p,
432-
)
385+
PropertyOnePush.argtypes = (GrabberHandlePtr, C.c_char_p, C.c_char_p)
433386

434387
SetPropertyAbsoluteValue = __tisgrabber.IC_SetPropertyAbsoluteValue
435388
SetPropertyAbsoluteValue.restype = C.c_int

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setuptools.setup(
1515
name="deeplabcut-live-gui",
16-
version="0.0.b0",
16+
version="1.0",
1717
author="A. & M. Mathis Labs",
1818
author_email="[email protected]",
1919
description="GUI to run real time deeplabcut experiments",

0 commit comments

Comments
 (0)