├── ax02_depth_range_limit └── ax02_depth_range_limit.pde ├── chFAB_modelbuilder_hello ├── .DS_Store └── chFAB_modelbuilder_hello.pde ├── chFAB_scanner ├── .DS_Store └── chFAB_scanner.pde ├── chFAB_scanner_no_cleanup └── chFAB_scanner_no_cleanup.pde ├── chPC_ex01_ellipse └── chPC_ex01_ellipse.pde ├── chPC_ex02_ellipse_translate └── chPC_ex02_ellipse_translate.pde ├── chPC_ex03_receding_ellipse └── chPC_ex03_receding_ellipse.pde ├── chPC_ex04_first_point_cloud └── chPC_ex04_first_point_cloud.pde ├── chPC_ex052_color_point_cloud └── chPC_ex052_color_point_cloud.pde ├── chPC_ex05_rotating_point_cloud └── chPC_ex05_rotating_point_cloud.pde ├── chPC_ex06_floating_cube └── chPC_ex06_floating_cube.pde ├── chPC_ex07_hotpoint └── chPC_ex07_hotpoint.pde ├── chPC_ex08_minim_hello ├── .DS_Store ├── chPC_ex08_minim_hello.pde └── kick.wav ├── chPC_ex09_hotpoint_sound ├── .DS_Store ├── chPC_ex09_hotpoint_sound.pde └── data │ ├── hat.wav │ └── kick.wav ├── chPC_ex10_multi_hotpoint ├── .DS_Store ├── Hotpoint.pde ├── chPC_ex10_multi_hotpoint.pde └── data │ ├── hat.wav │ └── kick.wav ├── chPC_ex11_obj_hello ├── .DS_Store ├── applet │ ├── OBJLoader.jar │ ├── chPC_ex11_obj_hello.jar │ ├── chPC_ex11_obj_hello.java │ ├── chPC_ex11_obj_hello.pde │ ├── core.jar │ ├── index.html │ ├── loading.gif │ └── opengl.jar ├── chPC_ex11_obj_hello.pde ├── kinect.obj └── kinect.obj.mtl ├── chPC_ex12_obj_in_point_cloud ├── chPC_ex12_obj_in_point_cloud.pde └── kinect.obj ├── chPC_ex13_obj_with_lines ├── chPC_ex13_obj_with_lines.pde └── kinect.obj ├── chPC_ex14_obj_in_point_cloud_peasy ├── chPC_ex14_obj_in_point_cloud_peasy.pde └── kinect.obj ├── chPC_ex15_interactive_peasy ├── Hotpoint.pde ├── chPC_ex15_interactive_peasy.pde └── kinect.obj ├── chSK_advanced_dance_pose ├── .DS_Store ├── SkeletonPoser.pde └── chSK_advanced_dance_pose.pde ├── chSK_basic_dance_pose ├── .DS_Store └── chSK_basic_dance_pose.pde ├── chSK_ex01_one_joint ├── .DS_Store ├── chSK_ex01_one_joint.pde ├── scaledEllipse_big.png └── scaledEllipse_small.png ├── chSK_ex02_skel_anatomy ├── .DS_Store └── chSK_ex02_skel_anatomy.pde ├── chSK_ex03_joint_distance ├── .DS_Store ├── chSK_ex03_joint_distance.pde └── distance_130.70207.png ├── chSK_ex04_joint_distance_art ├── .DS_Store ├── chSK_ex04_joint_distance_art.pde └── joint_art_34.419777.png ├── chSK_exercise_measurement ├── SkeletonRecorder.pde └── chSK_exercise_measurement.pde ├── chSK_exercise_measurement_one_limb ├── .DS_Store ├── SkeletonRecorder.pde ├── chSK_exercise_measurement_one_limb.pde └── exercise_mesaurement.png ├── chSK_joint_orientation ├── .DS_Store ├── chSK_joint_orientation.pde └── joint_orientation_axes_3.6722064.png ├── chSK_joint_orientation_w_model ├── .DS_Store ├── chSK_joint_orientation_w_model.pde └── kinect.obj ├── chSK_orientation_from_vector ├── .DS_Store ├── chSK_orientation_from_vector.pde ├── kinect.obj └── screen-1731.tif ├── chSK_scene_image ├── .DS_Store ├── chSK_scene_image.pde └── empire_state.jpg ├── chSK_scene_image_basic ├── .DS_Store └── chSK_scene_image_basic.pde ├── chSK_scene_map ├── .DS_Store └── chSK_scene_map.pde ├── chSK_scene_map_image └── chSK_scene_map_image.pde ├── chSK_translate_model_to_corner ├── chSK_translate_model_to_corner.pde └── kinect.obj ├── ex01_basic_depth └── ex01_basic_depth.pde ├── ex02_basic_depth_pimage └── ex02_basic_depth_pimage.pde ├── ex03_basic_depth_plus_mouseclick └── ex03_basic_depth_plus_mouseclick.pde ├── ex04_full_resolution_depth └── ex04_full_resolution_depth.pde ├── ex05_real_world_measurement └── ex05_real_world_measurement.pde ├── ex06_closest_pixel └── ex06_closest_pixel.pde ├── ex07_closest_pixel_with_measurements └── ex07_closest_pixel_with_measurements.pde ├── ex07_closest_pixel_with_running_average └── ex07_closest_pixel_with_running_average.pde ├── ex08_basic_drawing └── ex08_basic_drawing.pde ├── ex09_advanced_drawing ├── drawing.png └── ex09_advanced_drawing.pde └── ex10_basic_minority_report ├── .DS_Store ├── data └── image1.jpg └── ex10_basic_minority_report.pde /ax02_depth_range_limit/ax02_depth_range_limit.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ax02_depth_range_limit/ax02_depth_range_limit.pde -------------------------------------------------------------------------------- /chFAB_modelbuilder_hello/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chFAB_modelbuilder_hello/.DS_Store -------------------------------------------------------------------------------- /chFAB_modelbuilder_hello/chFAB_modelbuilder_hello.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chFAB_modelbuilder_hello/chFAB_modelbuilder_hello.pde -------------------------------------------------------------------------------- /chFAB_scanner/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chFAB_scanner/.DS_Store -------------------------------------------------------------------------------- /chFAB_scanner/chFAB_scanner.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chFAB_scanner/chFAB_scanner.pde -------------------------------------------------------------------------------- /chFAB_scanner_no_cleanup/chFAB_scanner_no_cleanup.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chFAB_scanner_no_cleanup/chFAB_scanner_no_cleanup.pde -------------------------------------------------------------------------------- /chPC_ex01_ellipse/chPC_ex01_ellipse.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex01_ellipse/chPC_ex01_ellipse.pde -------------------------------------------------------------------------------- /chPC_ex02_ellipse_translate/chPC_ex02_ellipse_translate.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex02_ellipse_translate/chPC_ex02_ellipse_translate.pde -------------------------------------------------------------------------------- /chPC_ex03_receding_ellipse/chPC_ex03_receding_ellipse.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex03_receding_ellipse/chPC_ex03_receding_ellipse.pde -------------------------------------------------------------------------------- /chPC_ex04_first_point_cloud/chPC_ex04_first_point_cloud.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex04_first_point_cloud/chPC_ex04_first_point_cloud.pde -------------------------------------------------------------------------------- /chPC_ex052_color_point_cloud/chPC_ex052_color_point_cloud.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex052_color_point_cloud/chPC_ex052_color_point_cloud.pde -------------------------------------------------------------------------------- /chPC_ex05_rotating_point_cloud/chPC_ex05_rotating_point_cloud.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex05_rotating_point_cloud/chPC_ex05_rotating_point_cloud.pde -------------------------------------------------------------------------------- /chPC_ex06_floating_cube/chPC_ex06_floating_cube.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex06_floating_cube/chPC_ex06_floating_cube.pde -------------------------------------------------------------------------------- /chPC_ex07_hotpoint/chPC_ex07_hotpoint.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex07_hotpoint/chPC_ex07_hotpoint.pde -------------------------------------------------------------------------------- /chPC_ex08_minim_hello/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex08_minim_hello/.DS_Store -------------------------------------------------------------------------------- /chPC_ex08_minim_hello/chPC_ex08_minim_hello.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex08_minim_hello/chPC_ex08_minim_hello.pde -------------------------------------------------------------------------------- /chPC_ex08_minim_hello/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex08_minim_hello/kick.wav -------------------------------------------------------------------------------- /chPC_ex09_hotpoint_sound/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex09_hotpoint_sound/.DS_Store -------------------------------------------------------------------------------- /chPC_ex09_hotpoint_sound/chPC_ex09_hotpoint_sound.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex09_hotpoint_sound/chPC_ex09_hotpoint_sound.pde -------------------------------------------------------------------------------- /chPC_ex09_hotpoint_sound/data/hat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex09_hotpoint_sound/data/hat.wav -------------------------------------------------------------------------------- /chPC_ex09_hotpoint_sound/data/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex09_hotpoint_sound/data/kick.wav -------------------------------------------------------------------------------- /chPC_ex10_multi_hotpoint/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex10_multi_hotpoint/.DS_Store -------------------------------------------------------------------------------- /chPC_ex10_multi_hotpoint/Hotpoint.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex10_multi_hotpoint/Hotpoint.pde -------------------------------------------------------------------------------- /chPC_ex10_multi_hotpoint/chPC_ex10_multi_hotpoint.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex10_multi_hotpoint/chPC_ex10_multi_hotpoint.pde -------------------------------------------------------------------------------- /chPC_ex10_multi_hotpoint/data/hat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex10_multi_hotpoint/data/hat.wav -------------------------------------------------------------------------------- /chPC_ex10_multi_hotpoint/data/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex10_multi_hotpoint/data/kick.wav -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/.DS_Store -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/OBJLoader.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/OBJLoader.jar -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/chPC_ex11_obj_hello.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/chPC_ex11_obj_hello.jar -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/chPC_ex11_obj_hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/chPC_ex11_obj_hello.java -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/chPC_ex11_obj_hello.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/chPC_ex11_obj_hello.pde -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/core.jar -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/index.html -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/loading.gif -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/applet/opengl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/applet/opengl.jar -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/chPC_ex11_obj_hello.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/chPC_ex11_obj_hello.pde -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/kinect.obj -------------------------------------------------------------------------------- /chPC_ex11_obj_hello/kinect.obj.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex11_obj_hello/kinect.obj.mtl -------------------------------------------------------------------------------- /chPC_ex12_obj_in_point_cloud/chPC_ex12_obj_in_point_cloud.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex12_obj_in_point_cloud/chPC_ex12_obj_in_point_cloud.pde -------------------------------------------------------------------------------- /chPC_ex12_obj_in_point_cloud/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex12_obj_in_point_cloud/kinect.obj -------------------------------------------------------------------------------- /chPC_ex13_obj_with_lines/chPC_ex13_obj_with_lines.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex13_obj_with_lines/chPC_ex13_obj_with_lines.pde -------------------------------------------------------------------------------- /chPC_ex13_obj_with_lines/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex13_obj_with_lines/kinect.obj -------------------------------------------------------------------------------- /chPC_ex14_obj_in_point_cloud_peasy/chPC_ex14_obj_in_point_cloud_peasy.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex14_obj_in_point_cloud_peasy/chPC_ex14_obj_in_point_cloud_peasy.pde -------------------------------------------------------------------------------- /chPC_ex14_obj_in_point_cloud_peasy/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex14_obj_in_point_cloud_peasy/kinect.obj -------------------------------------------------------------------------------- /chPC_ex15_interactive_peasy/Hotpoint.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex15_interactive_peasy/Hotpoint.pde -------------------------------------------------------------------------------- /chPC_ex15_interactive_peasy/chPC_ex15_interactive_peasy.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex15_interactive_peasy/chPC_ex15_interactive_peasy.pde -------------------------------------------------------------------------------- /chPC_ex15_interactive_peasy/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chPC_ex15_interactive_peasy/kinect.obj -------------------------------------------------------------------------------- /chSK_advanced_dance_pose/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_advanced_dance_pose/.DS_Store -------------------------------------------------------------------------------- /chSK_advanced_dance_pose/SkeletonPoser.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_advanced_dance_pose/SkeletonPoser.pde -------------------------------------------------------------------------------- /chSK_advanced_dance_pose/chSK_advanced_dance_pose.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_advanced_dance_pose/chSK_advanced_dance_pose.pde -------------------------------------------------------------------------------- /chSK_basic_dance_pose/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_basic_dance_pose/.DS_Store -------------------------------------------------------------------------------- /chSK_basic_dance_pose/chSK_basic_dance_pose.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_basic_dance_pose/chSK_basic_dance_pose.pde -------------------------------------------------------------------------------- /chSK_ex01_one_joint/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex01_one_joint/.DS_Store -------------------------------------------------------------------------------- /chSK_ex01_one_joint/chSK_ex01_one_joint.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex01_one_joint/chSK_ex01_one_joint.pde -------------------------------------------------------------------------------- /chSK_ex01_one_joint/scaledEllipse_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex01_one_joint/scaledEllipse_big.png -------------------------------------------------------------------------------- /chSK_ex01_one_joint/scaledEllipse_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex01_one_joint/scaledEllipse_small.png -------------------------------------------------------------------------------- /chSK_ex02_skel_anatomy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex02_skel_anatomy/.DS_Store -------------------------------------------------------------------------------- /chSK_ex02_skel_anatomy/chSK_ex02_skel_anatomy.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex02_skel_anatomy/chSK_ex02_skel_anatomy.pde -------------------------------------------------------------------------------- /chSK_ex03_joint_distance/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex03_joint_distance/.DS_Store -------------------------------------------------------------------------------- /chSK_ex03_joint_distance/chSK_ex03_joint_distance.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex03_joint_distance/chSK_ex03_joint_distance.pde -------------------------------------------------------------------------------- /chSK_ex03_joint_distance/distance_130.70207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex03_joint_distance/distance_130.70207.png -------------------------------------------------------------------------------- /chSK_ex04_joint_distance_art/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex04_joint_distance_art/.DS_Store -------------------------------------------------------------------------------- /chSK_ex04_joint_distance_art/chSK_ex04_joint_distance_art.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex04_joint_distance_art/chSK_ex04_joint_distance_art.pde -------------------------------------------------------------------------------- /chSK_ex04_joint_distance_art/joint_art_34.419777.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_ex04_joint_distance_art/joint_art_34.419777.png -------------------------------------------------------------------------------- /chSK_exercise_measurement/SkeletonRecorder.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_exercise_measurement/SkeletonRecorder.pde -------------------------------------------------------------------------------- /chSK_exercise_measurement/chSK_exercise_measurement.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_exercise_measurement/chSK_exercise_measurement.pde -------------------------------------------------------------------------------- /chSK_exercise_measurement_one_limb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_exercise_measurement_one_limb/.DS_Store -------------------------------------------------------------------------------- /chSK_exercise_measurement_one_limb/SkeletonRecorder.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_exercise_measurement_one_limb/SkeletonRecorder.pde -------------------------------------------------------------------------------- /chSK_exercise_measurement_one_limb/chSK_exercise_measurement_one_limb.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_exercise_measurement_one_limb/chSK_exercise_measurement_one_limb.pde -------------------------------------------------------------------------------- /chSK_exercise_measurement_one_limb/exercise_mesaurement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_exercise_measurement_one_limb/exercise_mesaurement.png -------------------------------------------------------------------------------- /chSK_joint_orientation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_joint_orientation/.DS_Store -------------------------------------------------------------------------------- /chSK_joint_orientation/chSK_joint_orientation.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_joint_orientation/chSK_joint_orientation.pde -------------------------------------------------------------------------------- /chSK_joint_orientation/joint_orientation_axes_3.6722064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_joint_orientation/joint_orientation_axes_3.6722064.png -------------------------------------------------------------------------------- /chSK_joint_orientation_w_model/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_joint_orientation_w_model/.DS_Store -------------------------------------------------------------------------------- /chSK_joint_orientation_w_model/chSK_joint_orientation_w_model.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_joint_orientation_w_model/chSK_joint_orientation_w_model.pde -------------------------------------------------------------------------------- /chSK_joint_orientation_w_model/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_joint_orientation_w_model/kinect.obj -------------------------------------------------------------------------------- /chSK_orientation_from_vector/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_orientation_from_vector/.DS_Store -------------------------------------------------------------------------------- /chSK_orientation_from_vector/chSK_orientation_from_vector.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_orientation_from_vector/chSK_orientation_from_vector.pde -------------------------------------------------------------------------------- /chSK_orientation_from_vector/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_orientation_from_vector/kinect.obj -------------------------------------------------------------------------------- /chSK_orientation_from_vector/screen-1731.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_orientation_from_vector/screen-1731.tif -------------------------------------------------------------------------------- /chSK_scene_image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_image/.DS_Store -------------------------------------------------------------------------------- /chSK_scene_image/chSK_scene_image.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_image/chSK_scene_image.pde -------------------------------------------------------------------------------- /chSK_scene_image/empire_state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_image/empire_state.jpg -------------------------------------------------------------------------------- /chSK_scene_image_basic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_image_basic/.DS_Store -------------------------------------------------------------------------------- /chSK_scene_image_basic/chSK_scene_image_basic.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_image_basic/chSK_scene_image_basic.pde -------------------------------------------------------------------------------- /chSK_scene_map/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_map/.DS_Store -------------------------------------------------------------------------------- /chSK_scene_map/chSK_scene_map.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_map/chSK_scene_map.pde -------------------------------------------------------------------------------- /chSK_scene_map_image/chSK_scene_map_image.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_scene_map_image/chSK_scene_map_image.pde -------------------------------------------------------------------------------- /chSK_translate_model_to_corner/chSK_translate_model_to_corner.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_translate_model_to_corner/chSK_translate_model_to_corner.pde -------------------------------------------------------------------------------- /chSK_translate_model_to_corner/kinect.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/chSK_translate_model_to_corner/kinect.obj -------------------------------------------------------------------------------- /ex01_basic_depth/ex01_basic_depth.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex01_basic_depth/ex01_basic_depth.pde -------------------------------------------------------------------------------- /ex02_basic_depth_pimage/ex02_basic_depth_pimage.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex02_basic_depth_pimage/ex02_basic_depth_pimage.pde -------------------------------------------------------------------------------- /ex03_basic_depth_plus_mouseclick/ex03_basic_depth_plus_mouseclick.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex03_basic_depth_plus_mouseclick/ex03_basic_depth_plus_mouseclick.pde -------------------------------------------------------------------------------- /ex04_full_resolution_depth/ex04_full_resolution_depth.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex04_full_resolution_depth/ex04_full_resolution_depth.pde -------------------------------------------------------------------------------- /ex05_real_world_measurement/ex05_real_world_measurement.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex05_real_world_measurement/ex05_real_world_measurement.pde -------------------------------------------------------------------------------- /ex06_closest_pixel/ex06_closest_pixel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex06_closest_pixel/ex06_closest_pixel.pde -------------------------------------------------------------------------------- /ex07_closest_pixel_with_measurements/ex07_closest_pixel_with_measurements.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex07_closest_pixel_with_measurements/ex07_closest_pixel_with_measurements.pde -------------------------------------------------------------------------------- /ex07_closest_pixel_with_running_average/ex07_closest_pixel_with_running_average.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex07_closest_pixel_with_running_average/ex07_closest_pixel_with_running_average.pde -------------------------------------------------------------------------------- /ex08_basic_drawing/ex08_basic_drawing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex08_basic_drawing/ex08_basic_drawing.pde -------------------------------------------------------------------------------- /ex09_advanced_drawing/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex09_advanced_drawing/drawing.png -------------------------------------------------------------------------------- /ex09_advanced_drawing/ex09_advanced_drawing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex09_advanced_drawing/ex09_advanced_drawing.pde -------------------------------------------------------------------------------- /ex10_basic_minority_report/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex10_basic_minority_report/.DS_Store -------------------------------------------------------------------------------- /ex10_basic_minority_report/data/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex10_basic_minority_report/data/image1.jpg -------------------------------------------------------------------------------- /ex10_basic_minority_report/ex10_basic_minority_report.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atduskgreg/Making-Things-See-Examples/HEAD/ex10_basic_minority_report/ex10_basic_minority_report.pde --------------------------------------------------------------------------------