summaryrefslogtreecommitdiff
path: root/shared-bindings/camera/Camera.c
diff options
context:
space:
mode:
authorKamil Tomaszewski <kamil.tomaszewski@sony.com>2020-09-11 13:27:11 +0200
committerKamil Tomaszewski <kamil.tomaszewski@sony.com>2020-09-14 13:11:15 +0200
commitc2fc592c2ca7ec42374a50f9e33ac551bf846596 (patch)
tree9e645c8ae5a91fa5a27862fd90fd403b2f953462 /shared-bindings/camera/Camera.c
parent143a1ff94a5052465e3e65057b0ec4660120b2ed (diff)
camera: Change API
Diffstat (limited to 'shared-bindings/camera/Camera.c')
-rw-r--r--shared-bindings/camera/Camera.c110
1 files changed, 63 insertions, 47 deletions
diff --git a/shared-bindings/camera/Camera.c b/shared-bindings/camera/Camera.c
index 3855fed3c..3b839d802 100644
--- a/shared-bindings/camera/Camera.c
+++ b/shared-bindings/camera/Camera.c
@@ -48,37 +48,38 @@
//| vfs = storage.VfsFat(sd)
//| storage.mount(vfs, '/sd')
//|
-//| cam = camera.Camera(camera.ImageSize.IMAGE_SIZE_1920x1080)
+//| cam = camera.Camera(1920, 1080)
//|
+//| buffer = bytearray(512 * 1024)
//| file = open("/sd/image.jpg","wb")
-//| cam.take_picture()
-//| file.write(cam.picture)
+//| size = cam.take_picture()
+//| file.write(buffer, size)
//| file.close()"""
//|
-//| def __init__(self, ):
+//| def __init__(self, width: int, height: int) -> None:
//| """Initialize camera.
//|
-//| :param camera.ImageSize size: image size"""
+//| :param int width: Width in pixels
+//| :param int height: Height in pixels"""
//| ...
//|
STATIC mp_obj_t camera_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
camera_obj_t *self = m_new_obj(camera_obj_t);
self->base.type = &camera_type;
- enum { ARG_size };
+ enum { ARG_width, ARG_height };
static const mp_arg_t allowed_args[] = {
- { MP_QSTR_size, MP_ARG_REQUIRED | MP_ARG_OBJ },
+ { MP_QSTR_width, MP_ARG_REQUIRED | MP_ARG_INT },
+ { MP_QSTR_height, MP_ARG_REQUIRED | MP_ARG_INT },
};
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
- camera_imagesize_t size = camera_imagesize_obj_to_type(args[ARG_size].u_obj);
-
- common_hal_camera_construct(self, size);
+ common_hal_camera_construct(self, args[ARG_width].u_int, args[ARG_height].u_int);
return MP_OBJ_FROM_PTR(self);
}
-//| def deinit(self, ) -> Any:
+//| def deinit(self) -> None:
//| """De-initialize camera."""
//| ...
//|
@@ -95,69 +96,84 @@ STATIC void check_for_deinit(camera_obj_t *self) {
}
}
-//| def take_picture(self, ) -> Any:
-//| """Take picture."""
+//| def take_picture(self, buf: WriteableBuffer, format: ImageFormat) -> int:
+//| """Take picture and save to ``buf`` in the given ``format``
+//|
+//| :return: the size of the picture taken
+//| :rtype: int"""
//| ...
//|
-STATIC mp_obj_t camera_obj_take_picture(mp_obj_t self_in) {
- camera_obj_t *self = MP_OBJ_TO_PTR(self_in);
+STATIC mp_obj_t camera_obj_take_picture(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
+ enum { ARG_buffer, ARG_format };
+ static const mp_arg_t allowed_args[] = {
+ { MP_QSTR_buffer, MP_ARG_REQUIRED | MP_ARG_OBJ },
+ { MP_QSTR_format, MP_ARG_REQUIRED | MP_ARG_OBJ },
+ };
+ camera_obj_t *self = MP_OBJ_TO_PTR(pos_args[0]);
check_for_deinit(self);
+ mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
+ mp_arg_parse_all(n_args - 1, pos_args + 1, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
- common_hal_camera_take_picture(self);
- return mp_const_none;
+ mp_buffer_info_t bufinfo;
+ mp_get_buffer_raise(args[ARG_buffer].u_obj, &bufinfo, MP_BUFFER_WRITE);
+
+ camera_imageformat_t format = camera_imageformat_obj_to_type(args[ARG_format].u_obj);
+
+ return MP_OBJ_NEW_SMALL_INT(common_hal_camera_take_picture(self, (uint8_t *)bufinfo.buf, bufinfo.len, format));
}
-MP_DEFINE_CONST_FUN_OBJ_1(camera_take_picture_obj, camera_obj_take_picture);
+MP_DEFINE_CONST_FUN_OBJ_KW(camera_take_picture_obj, 3, camera_obj_take_picture);
-//| picture: Any = ...
-//| """Image buffer."""
+//| width: int
+//| """Image width in pixels."""
//|
-STATIC mp_obj_t camera_obj_get_picture(mp_obj_t self_in) {
+STATIC mp_obj_t camera_obj_get_width(mp_obj_t self_in) {
+ camera_obj_t *self = MP_OBJ_TO_PTR(self_in);
+ check_for_deinit(self);
+ return MP_OBJ_NEW_SMALL_INT(common_hal_camera_get_width(self));
+}
+MP_DEFINE_CONST_FUN_OBJ_1(camera_get_width_obj, camera_obj_get_width);
+
+STATIC mp_obj_t camera_obj_set_width(mp_obj_t self_in, mp_obj_t value) {
camera_obj_t *self = MP_OBJ_TO_PTR(self_in);
check_for_deinit(self);
- uint8_t *buffer = common_hal_camera_get_picture_buffer(self);
- size_t size = common_hal_camera_get_picture_size(self);
+ common_hal_camera_set_width(self, mp_obj_get_int(value));
- return mp_obj_new_bytearray_by_ref(size, buffer);
+ return mp_const_none;
}
-MP_DEFINE_CONST_FUN_OBJ_1(camera_get_picture_obj, camera_obj_get_picture);
+MP_DEFINE_CONST_FUN_OBJ_2(camera_set_width_obj, camera_obj_set_width);
-const mp_obj_property_t camera_picture_obj = {
+const mp_obj_property_t camera_width_obj = {
.base.type = &mp_type_property,
- .proxy = {(mp_obj_t)&camera_get_picture_obj,
- (mp_obj_t)&mp_const_none_obj,
+ .proxy = {(mp_obj_t)&camera_get_width_obj,
+ (mp_obj_t)&camera_set_width_obj,
(mp_obj_t)&mp_const_none_obj},
};
-//| size: Any = ...
-//| """Image size."""
+//| height: int
+//| """Image height in pixels."""
//|
-STATIC mp_obj_t camera_obj_get_size(mp_obj_t self_in) {
+STATIC mp_obj_t camera_obj_get_height(mp_obj_t self_in) {
camera_obj_t *self = MP_OBJ_TO_PTR(self_in);
check_for_deinit(self);
- return camera_imagesize_type_to_obj(common_hal_camera_get_size(self));
+ return MP_OBJ_NEW_SMALL_INT(common_hal_camera_get_height(self));
}
-MP_DEFINE_CONST_FUN_OBJ_1(camera_get_size_obj, camera_obj_get_size);
+MP_DEFINE_CONST_FUN_OBJ_1(camera_get_height_obj, camera_obj_get_height);
-STATIC mp_obj_t camera_obj_set_size(mp_obj_t self_in, mp_obj_t value) {
+STATIC mp_obj_t camera_obj_set_height(mp_obj_t self_in, mp_obj_t value) {
camera_obj_t *self = MP_OBJ_TO_PTR(self_in);
check_for_deinit(self);
- camera_imagesize_t size = camera_imagesize_obj_to_type(value);
- if (size == IMAGESIZE_NONE) {
- mp_raise_ValueError(translate("Invalid image size."));
- }
-
- common_hal_camera_set_size(self, size);
+ common_hal_camera_set_height(self, mp_obj_get_int(value));
return mp_const_none;
}
-MP_DEFINE_CONST_FUN_OBJ_2(camera_set_size_obj, camera_obj_set_size);
+MP_DEFINE_CONST_FUN_OBJ_2(camera_set_height_obj, camera_obj_set_height);
-const mp_obj_property_t camera_size_obj = {
+const mp_obj_property_t camera_height_obj = {
.base.type = &mp_type_property,
- .proxy = {(mp_obj_t)&camera_get_size_obj,
- (mp_obj_t)&camera_set_size_obj,
+ .proxy = {(mp_obj_t)&camera_get_height_obj,
+ (mp_obj_t)&camera_set_height_obj,
(mp_obj_t)&mp_const_none_obj},
};
@@ -165,14 +181,14 @@ STATIC const mp_rom_map_elem_t camera_locals_dict_table[] = {
{ MP_ROM_QSTR(MP_QSTR_deinit), MP_ROM_PTR(&camera_deinit_obj) },
{ MP_ROM_QSTR(MP_QSTR_take_picture), MP_ROM_PTR(&camera_take_picture_obj) },
- { MP_ROM_QSTR(MP_QSTR_picture), MP_ROM_PTR(&camera_picture_obj) },
- { MP_ROM_QSTR(MP_QSTR_size), MP_ROM_PTR(&camera_size_obj) },
+ { MP_ROM_QSTR(MP_QSTR_width), MP_ROM_PTR(&camera_width_obj) },
+ { MP_ROM_QSTR(MP_QSTR_height), MP_ROM_PTR(&camera_height_obj) },
};
STATIC MP_DEFINE_CONST_DICT(camera_locals_dict, camera_locals_dict_table);
const mp_obj_type_t camera_type = {
{ &mp_type_type },
- .name = MP_QSTR_GNSS,
+ .name = MP_QSTR_Camera,
.make_new = camera_make_new,
.locals_dict = (mp_obj_dict_t*)&camera_locals_dict,
};