├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Morn.pc.in ├── MornConfig.cmake.in ├── README.md ├── doc ├── Chrono.md ├── Map.md ├── Math.md ├── MathParser.md ├── Morn vector & matrix.md ├── Morn_json_en.md ├── Morn内存块.md ├── Morn文件加密解密.md ├── Morn链表.md ├── Morn默认参数.md ├── Morn:MTensor张量.md ├── Morn:ini文件.md ├── Morn:json文件.md ├── Morn:二叉树.md ├── Morn:傅里叶变换.md ├── Morn:内存池.md ├── Morn:内存监查.md ├── Morn:命令行解析.md ├── Morn:图像.md ├── Morn:图像加载和保存.md ├── Morn:图像坐标变换.md ├── Morn:图像坐标变换2.md ├── Morn:图像数据流.md ├── Morn:图像缩放.md ├── Morn:图像颜色空间.md ├── Morn:大数运算.md ├── Morn:容器.md ├── Morn:容器2.md ├── Morn:对象属性.md ├── Morn:平面几何.md ├── Morn:异常处理.md ├── Morn:排列组合.md ├── Morn:排序.md ├── Morn:数学表达式运算.md ├── Morn:日志.md ├── Morn:时间和日期.md ├── Morn:映射.md ├── Morn:曲线拟合.md ├── Morn:栈和队列.md ├── Morn:深度学习框架.md ├── Morn:矩阵.md ├── Morn:约定.md ├── Morn:线程池.md ├── Morn:线程流水线.md ├── Morn:绘图.md ├── Morn:编译.md ├── Morn:视频背景提取.md ├── Morn:进程间通信.md ├── Permutation & Combination.md ├── README_CN.md ├── ThreadPool.md ├── logo.PNG ├── sort.md ├── test.jpg ├── test2.jpg ├── test_Transform_out1.jpg ├── test_Transform_out2.jpg ├── test_Transform_out3.jpg ├── test_Transform_out4.jpg ├── test_Transform_out5.jpg ├── test_Transform_out6.jpg ├── test_affine.jpg ├── test_binary.jpg ├── test_binary_area.png ├── test_binary_bin.png ├── test_binary_bin2.png ├── test_binary_denoise.png ├── test_binary_edge.png ├── test_binary_edge_rect.png ├── test_draw.png ├── test_geometry.jpg ├── test_geometry_bin.jpg ├── test_geometry_rst1.bmp ├── test_geometry_rst2.bmp ├── test_memory.png ├── test_memory2.png ├── test_perspective.jpg ├── test_resize1.jpg ├── test_resize2.jpg ├── test_resize3.jpg ├── test_rotate.jpg ├── test_transform.jpg ├── 二值图.PNG ├── 傅里叶变换.PNG ├── 内存池.PNG ├── 图片缩放.PNG ├── 容器.PNG ├── 容器排序.PNG ├── 拟合.PNG ├── 拟合2.PNG └── 日志.PNG ├── example ├── JSON.c ├── TCP1.c ├── TCP2.c ├── TCP3.c ├── TCP4.c ├── UDP.c ├── coroutine.c ├── coroutine2.c ├── coroutine3.c ├── coroutine4.c ├── coroutine_flag.c ├── log_file.c ├── log_file_rotate.c ├── map5.c ├── map_example5.c ├── proc_message.c ├── sort.c ├── sort_example.c ├── thread1.c ├── thread2.c ├── thread3.c ├── thread_pool1.c ├── thread_pool2.c ├── thread_pool3.c └── timer.c ├── gnu_makefile ├── include ├── morn_image.h ├── morn_math.h ├── morn_ptc.h ├── morn_tensor.h ├── morn_util.h └── morn_wave.h ├── lib ├── x64_gnu │ └── ReadMe.md ├── x64_mingw │ └── ReadMe.md └── x64_msvc │ └── ReadMe.md ├── mingw_makefile ├── msvc_makefile ├── performance └── graph.cpp ├── src ├── deep_learning │ ├── morn_learning_net.c │ ├── morn_learninig_loss.c │ ├── morn_tensor.c │ ├── morn_tensor_activation.c │ ├── morn_tensor_batch_normlize.c │ ├── morn_tensor_caculate.h │ ├── morn_tensor_channel.c │ ├── morn_tensor_connect.c │ ├── morn_tensor_conv.c │ ├── morn_tensor_conv2.c │ ├── morn_tensor_data.c │ ├── morn_tensor_deconv.c │ ├── morn_tensor_detect.c │ ├── morn_tensor_in_out.c │ ├── morn_tensor_mul.c │ ├── morn_tensor_noise.c │ ├── morn_tensor_pool.c │ ├── morn_tensor_reshape.c │ └── morn_tensor_resize.c ├── image │ ├── morn_image.c │ ├── morn_image_IO.c │ ├── morn_image_binary.c │ ├── morn_image_caculate.h │ ├── morn_image_color.c │ ├── morn_image_convert.c │ ├── morn_image_draw.c │ ├── morn_image_file.c │ ├── morn_image_filter.c │ ├── morn_image_geometry.c │ ├── morn_image_geometry2.c │ ├── morn_image_gradient.c │ ├── morn_image_hist.c │ ├── morn_image_integration.c │ ├── morn_image_mask.c │ ├── morn_image_morphology.c │ ├── morn_image_resize.c │ ├── morn_image_segment.c │ ├── morn_image_seperate.c │ ├── morn_image_seperate2.c │ ├── morn_image_shape.c │ ├── morn_image_similarity.c │ ├── morn_image_target.c │ ├── morn_image_thresh.c │ ├── morn_image_transform.c │ ├── morn_image_transform2.c │ └── morn_vedio_background.c ├── math │ ├── morn_MAT_file.c │ ├── morn_calculate.c │ ├── morn_fit_LSM.c │ ├── morn_interpolation.c │ ├── morn_large_integer.c │ ├── morn_math_common.c │ ├── morn_matrix.c │ ├── morn_matrix2.c │ ├── morn_regression.c │ └── morn_sort.c ├── ptc │ ├── morn_buffer.c │ ├── morn_coroutine.c │ ├── morn_message.c │ ├── morn_pipeline.c │ ├── morn_thread.c │ └── morn_thread_pool.c ├── util │ ├── morn_CRC.c │ ├── morn_DES.c │ ├── morn_INI.c │ ├── morn_JSON.c │ ├── morn_TAR.c │ ├── morn_array.c │ ├── morn_btree.c │ ├── morn_builder.c │ ├── morn_chain.c │ ├── morn_codec.c │ ├── morn_csv.c │ ├── morn_dictionary.c │ ├── morn_file.c │ ├── morn_file_list.c │ ├── morn_graph.c │ ├── morn_list.c │ ├── morn_log.c │ ├── morn_lru.c │ ├── morn_map.c │ ├── morn_memory.c │ ├── morn_memory_block.c │ ├── morn_sheet.c │ ├── morn_string.c │ ├── morn_table.c │ ├── morn_text.c │ ├── morn_time.c │ ├── morn_tree.c │ └── morn_universal.c ├── wave │ ├── morn_PSwave_filter.c │ ├── morn_WAV_file.c │ ├── morn_audio_volume.c │ ├── morn_wave.c │ ├── morn_wave_FFT.c │ ├── morn_wave_filter.c │ ├── morn_wave_normalize.c │ ├── morn_wave_pitch.c │ ├── morn_wave_preprocess.c │ ├── morn_wave_resample.c │ └── morn_wave_shape.c └── wrap │ ├── morn_USB_Camera.cpp │ ├── morn_blas.c │ ├── morn_socket.c │ ├── morn_stb_image.c │ ├── stb_image.h │ └── stb_image_write.h ├── test ├── canada.json ├── citm_catalog.json ├── test_CRC.c ├── test_CRC2.cpp ├── test_INI_file.c ├── test_INI_file.ini ├── test_INI_file_out.ini ├── test_JSON_file.c ├── test_JSON_file.json ├── test_JSON_file2.cpp ├── test_TCP.c ├── test_UDP.c ├── test_argument.c ├── test_array2.cpp ├── test_binary.cpp ├── test_blas.c ├── test_calculate.c ├── test_chrono.c ├── test_cl.c ├── test_cl2.c ├── test_cl3.cpp ├── test_clblas.c ├── test_color_convert.c ├── test_convex_hull.cpp ├── test_coroutine.c ├── test_csv.c ├── test_datatype.c ├── test_dictionary.c ├── test_dictionary2.cpp ├── test_event.c ├── test_fft.c ├── test_fft2.c ├── test_fit_LSM.c ├── test_geometry.c ├── test_geometry2.cpp ├── test_geometry3.c ├── test_geometry4.c ├── test_graph.c ├── test_image_binary.c ├── test_image_binary2.c ├── test_image_convert.c ├── test_image_convert2.cpp ├── test_image_draw.c ├── test_image_file.c ├── test_image_resize.c ├── test_image_resize2.cpp ├── test_interpolation.c ├── test_interpolation2.c ├── test_json.json ├── test_json_out.json ├── test_large_integer.c ├── test_linear_equation.cpp ├── test_list.c ├── test_list2.cpp ├── test_list_sort.cpp ├── test_log.c ├── test_log2.cpp ├── test_map.c ├── test_map2.cpp ├── test_map3.cpp ├── test_math.c ├── test_math_common.c ├── test_matrix.c ├── test_matrix2.c ├── test_matrix3.cpp ├── test_matrix4.cpp ├── test_matrix5.cpp ├── test_memory.c ├── test_memory2.c ├── test_message.c ├── test_message1.c ├── test_message2.c ├── test_message2.cpp ├── test_message3.c ├── test_minist.c ├── test_minist.ini ├── test_minist.morn ├── test_permutation_combination.c ├── test_pipeline.c ├── test_proc_variate.c ├── test_process_message.c ├── test_process_mutex.c ├── test_process_topic.c ├── test_process_topic2.c ├── test_process_variate.c ├── test_property.c ├── test_queue.c ├── test_signal.c ├── test_sort.c ├── test_sort2.cpp ├── test_stringnum.c ├── test_temp_transform.c ├── test_tensor.c ├── test_text.c ├── test_text2.cpp ├── test_thread.c ├── test_thread_pool.c ├── test_time.c ├── test_transform.c └── test_transform2.cpp └── tool ├── calculate.c ├── crypt.c ├── hashvalue.c ├── imageformat.c └── morn_help.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/LICENSE -------------------------------------------------------------------------------- /Morn.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/Morn.pc.in -------------------------------------------------------------------------------- /MornConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/MornConfig.cmake.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/README.md -------------------------------------------------------------------------------- /doc/Chrono.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Chrono.md -------------------------------------------------------------------------------- /doc/Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Map.md -------------------------------------------------------------------------------- /doc/Math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Math.md -------------------------------------------------------------------------------- /doc/MathParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/MathParser.md -------------------------------------------------------------------------------- /doc/Morn vector & matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn vector & matrix.md -------------------------------------------------------------------------------- /doc/Morn_json_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn_json_en.md -------------------------------------------------------------------------------- /doc/Morn内存块.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn内存块.md -------------------------------------------------------------------------------- /doc/Morn文件加密解密.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn文件加密解密.md -------------------------------------------------------------------------------- /doc/Morn链表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn链表.md -------------------------------------------------------------------------------- /doc/Morn默认参数.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn默认参数.md -------------------------------------------------------------------------------- /doc/Morn:MTensor张量.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:MTensor张量.md -------------------------------------------------------------------------------- /doc/Morn:ini文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:ini文件.md -------------------------------------------------------------------------------- /doc/Morn:json文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:json文件.md -------------------------------------------------------------------------------- /doc/Morn:二叉树.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:二叉树.md -------------------------------------------------------------------------------- /doc/Morn:傅里叶变换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:傅里叶变换.md -------------------------------------------------------------------------------- /doc/Morn:内存池.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:内存池.md -------------------------------------------------------------------------------- /doc/Morn:内存监查.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:内存监查.md -------------------------------------------------------------------------------- /doc/Morn:命令行解析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:命令行解析.md -------------------------------------------------------------------------------- /doc/Morn:图像.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:图像.md -------------------------------------------------------------------------------- /doc/Morn:图像加载和保存.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:图像加载和保存.md -------------------------------------------------------------------------------- /doc/Morn:图像坐标变换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:图像坐标变换.md -------------------------------------------------------------------------------- /doc/Morn:图像坐标变换2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:图像坐标变换2.md -------------------------------------------------------------------------------- /doc/Morn:图像数据流.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:图像数据流.md -------------------------------------------------------------------------------- /doc/Morn:图像缩放.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:图像缩放.md -------------------------------------------------------------------------------- /doc/Morn:图像颜色空间.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:图像颜色空间.md -------------------------------------------------------------------------------- /doc/Morn:大数运算.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:大数运算.md -------------------------------------------------------------------------------- /doc/Morn:容器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:容器.md -------------------------------------------------------------------------------- /doc/Morn:容器2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:容器2.md -------------------------------------------------------------------------------- /doc/Morn:对象属性.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:对象属性.md -------------------------------------------------------------------------------- /doc/Morn:平面几何.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:平面几何.md -------------------------------------------------------------------------------- /doc/Morn:异常处理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:异常处理.md -------------------------------------------------------------------------------- /doc/Morn:排列组合.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:排列组合.md -------------------------------------------------------------------------------- /doc/Morn:排序.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:排序.md -------------------------------------------------------------------------------- /doc/Morn:数学表达式运算.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:数学表达式运算.md -------------------------------------------------------------------------------- /doc/Morn:日志.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:日志.md -------------------------------------------------------------------------------- /doc/Morn:时间和日期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:时间和日期.md -------------------------------------------------------------------------------- /doc/Morn:映射.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:映射.md -------------------------------------------------------------------------------- /doc/Morn:曲线拟合.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:曲线拟合.md -------------------------------------------------------------------------------- /doc/Morn:栈和队列.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:栈和队列.md -------------------------------------------------------------------------------- /doc/Morn:深度学习框架.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:深度学习框架.md -------------------------------------------------------------------------------- /doc/Morn:矩阵.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:矩阵.md -------------------------------------------------------------------------------- /doc/Morn:约定.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:约定.md -------------------------------------------------------------------------------- /doc/Morn:线程池.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:线程池.md -------------------------------------------------------------------------------- /doc/Morn:线程流水线.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:线程流水线.md -------------------------------------------------------------------------------- /doc/Morn:绘图.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:绘图.md -------------------------------------------------------------------------------- /doc/Morn:编译.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:编译.md -------------------------------------------------------------------------------- /doc/Morn:视频背景提取.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:视频背景提取.md -------------------------------------------------------------------------------- /doc/Morn:进程间通信.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Morn:进程间通信.md -------------------------------------------------------------------------------- /doc/Permutation & Combination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/Permutation & Combination.md -------------------------------------------------------------------------------- /doc/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/README_CN.md -------------------------------------------------------------------------------- /doc/ThreadPool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/ThreadPool.md -------------------------------------------------------------------------------- /doc/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/logo.PNG -------------------------------------------------------------------------------- /doc/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/sort.md -------------------------------------------------------------------------------- /doc/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test.jpg -------------------------------------------------------------------------------- /doc/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test2.jpg -------------------------------------------------------------------------------- /doc/test_Transform_out1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_Transform_out1.jpg -------------------------------------------------------------------------------- /doc/test_Transform_out2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_Transform_out2.jpg -------------------------------------------------------------------------------- /doc/test_Transform_out3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_Transform_out3.jpg -------------------------------------------------------------------------------- /doc/test_Transform_out4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_Transform_out4.jpg -------------------------------------------------------------------------------- /doc/test_Transform_out5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_Transform_out5.jpg -------------------------------------------------------------------------------- /doc/test_Transform_out6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_Transform_out6.jpg -------------------------------------------------------------------------------- /doc/test_affine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_affine.jpg -------------------------------------------------------------------------------- /doc/test_binary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_binary.jpg -------------------------------------------------------------------------------- /doc/test_binary_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_binary_area.png -------------------------------------------------------------------------------- /doc/test_binary_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_binary_bin.png -------------------------------------------------------------------------------- /doc/test_binary_bin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_binary_bin2.png -------------------------------------------------------------------------------- /doc/test_binary_denoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_binary_denoise.png -------------------------------------------------------------------------------- /doc/test_binary_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_binary_edge.png -------------------------------------------------------------------------------- /doc/test_binary_edge_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_binary_edge_rect.png -------------------------------------------------------------------------------- /doc/test_draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_draw.png -------------------------------------------------------------------------------- /doc/test_geometry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_geometry.jpg -------------------------------------------------------------------------------- /doc/test_geometry_bin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_geometry_bin.jpg -------------------------------------------------------------------------------- /doc/test_geometry_rst1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_geometry_rst1.bmp -------------------------------------------------------------------------------- /doc/test_geometry_rst2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_geometry_rst2.bmp -------------------------------------------------------------------------------- /doc/test_memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_memory.png -------------------------------------------------------------------------------- /doc/test_memory2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_memory2.png -------------------------------------------------------------------------------- /doc/test_perspective.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_perspective.jpg -------------------------------------------------------------------------------- /doc/test_resize1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_resize1.jpg -------------------------------------------------------------------------------- /doc/test_resize2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_resize2.jpg -------------------------------------------------------------------------------- /doc/test_resize3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_resize3.jpg -------------------------------------------------------------------------------- /doc/test_rotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_rotate.jpg -------------------------------------------------------------------------------- /doc/test_transform.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/test_transform.jpg -------------------------------------------------------------------------------- /doc/二值图.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/二值图.PNG -------------------------------------------------------------------------------- /doc/傅里叶变换.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/傅里叶变换.PNG -------------------------------------------------------------------------------- /doc/内存池.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/内存池.PNG -------------------------------------------------------------------------------- /doc/图片缩放.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/图片缩放.PNG -------------------------------------------------------------------------------- /doc/容器.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/容器.PNG -------------------------------------------------------------------------------- /doc/容器排序.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/容器排序.PNG -------------------------------------------------------------------------------- /doc/拟合.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/拟合.PNG -------------------------------------------------------------------------------- /doc/拟合2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/拟合2.PNG -------------------------------------------------------------------------------- /doc/日志.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/doc/日志.PNG -------------------------------------------------------------------------------- /example/JSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/JSON.c -------------------------------------------------------------------------------- /example/TCP1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/TCP1.c -------------------------------------------------------------------------------- /example/TCP2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/TCP2.c -------------------------------------------------------------------------------- /example/TCP3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/TCP3.c -------------------------------------------------------------------------------- /example/TCP4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/TCP4.c -------------------------------------------------------------------------------- /example/UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/UDP.c -------------------------------------------------------------------------------- /example/coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/coroutine.c -------------------------------------------------------------------------------- /example/coroutine2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/coroutine2.c -------------------------------------------------------------------------------- /example/coroutine3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/coroutine3.c -------------------------------------------------------------------------------- /example/coroutine4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/coroutine4.c -------------------------------------------------------------------------------- /example/coroutine_flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/coroutine_flag.c -------------------------------------------------------------------------------- /example/log_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/log_file.c -------------------------------------------------------------------------------- /example/log_file_rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/log_file_rotate.c -------------------------------------------------------------------------------- /example/map5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/map5.c -------------------------------------------------------------------------------- /example/map_example5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/map_example5.c -------------------------------------------------------------------------------- /example/proc_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/proc_message.c -------------------------------------------------------------------------------- /example/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/sort.c -------------------------------------------------------------------------------- /example/sort_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/sort_example.c -------------------------------------------------------------------------------- /example/thread1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/thread1.c -------------------------------------------------------------------------------- /example/thread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/thread2.c -------------------------------------------------------------------------------- /example/thread3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/thread3.c -------------------------------------------------------------------------------- /example/thread_pool1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/thread_pool1.c -------------------------------------------------------------------------------- /example/thread_pool2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/thread_pool2.c -------------------------------------------------------------------------------- /example/thread_pool3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/thread_pool3.c -------------------------------------------------------------------------------- /example/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/example/timer.c -------------------------------------------------------------------------------- /gnu_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/gnu_makefile -------------------------------------------------------------------------------- /include/morn_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/include/morn_image.h -------------------------------------------------------------------------------- /include/morn_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/include/morn_math.h -------------------------------------------------------------------------------- /include/morn_ptc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/include/morn_ptc.h -------------------------------------------------------------------------------- /include/morn_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/include/morn_tensor.h -------------------------------------------------------------------------------- /include/morn_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/include/morn_util.h -------------------------------------------------------------------------------- /include/morn_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/include/morn_wave.h -------------------------------------------------------------------------------- /lib/x64_gnu/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/lib/x64_gnu/ReadMe.md -------------------------------------------------------------------------------- /lib/x64_mingw/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/lib/x64_mingw/ReadMe.md -------------------------------------------------------------------------------- /lib/x64_msvc/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/lib/x64_msvc/ReadMe.md -------------------------------------------------------------------------------- /mingw_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/mingw_makefile -------------------------------------------------------------------------------- /msvc_makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/msvc_makefile -------------------------------------------------------------------------------- /performance/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/performance/graph.cpp -------------------------------------------------------------------------------- /src/deep_learning/morn_learning_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_learning_net.c -------------------------------------------------------------------------------- /src/deep_learning/morn_learninig_loss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_learninig_loss.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_activation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_activation.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_batch_normlize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_batch_normlize.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_caculate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_caculate.h -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_channel.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_connect.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_conv.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_conv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_conv2.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_data.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_deconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_deconv.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_detect.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_in_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_in_out.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_mul.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_noise.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_pool.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_reshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_reshape.c -------------------------------------------------------------------------------- /src/deep_learning/morn_tensor_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/deep_learning/morn_tensor_resize.c -------------------------------------------------------------------------------- /src/image/morn_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image.c -------------------------------------------------------------------------------- /src/image/morn_image_IO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_IO.c -------------------------------------------------------------------------------- /src/image/morn_image_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_binary.c -------------------------------------------------------------------------------- /src/image/morn_image_caculate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_caculate.h -------------------------------------------------------------------------------- /src/image/morn_image_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_color.c -------------------------------------------------------------------------------- /src/image/morn_image_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_convert.c -------------------------------------------------------------------------------- /src/image/morn_image_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_draw.c -------------------------------------------------------------------------------- /src/image/morn_image_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_file.c -------------------------------------------------------------------------------- /src/image/morn_image_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_filter.c -------------------------------------------------------------------------------- /src/image/morn_image_geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_geometry.c -------------------------------------------------------------------------------- /src/image/morn_image_geometry2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_geometry2.c -------------------------------------------------------------------------------- /src/image/morn_image_gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_gradient.c -------------------------------------------------------------------------------- /src/image/morn_image_hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_hist.c -------------------------------------------------------------------------------- /src/image/morn_image_integration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_integration.c -------------------------------------------------------------------------------- /src/image/morn_image_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_mask.c -------------------------------------------------------------------------------- /src/image/morn_image_morphology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_morphology.c -------------------------------------------------------------------------------- /src/image/morn_image_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_resize.c -------------------------------------------------------------------------------- /src/image/morn_image_segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_segment.c -------------------------------------------------------------------------------- /src/image/morn_image_seperate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_seperate.c -------------------------------------------------------------------------------- /src/image/morn_image_seperate2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_seperate2.c -------------------------------------------------------------------------------- /src/image/morn_image_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_shape.c -------------------------------------------------------------------------------- /src/image/morn_image_similarity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_similarity.c -------------------------------------------------------------------------------- /src/image/morn_image_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_target.c -------------------------------------------------------------------------------- /src/image/morn_image_thresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_thresh.c -------------------------------------------------------------------------------- /src/image/morn_image_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_transform.c -------------------------------------------------------------------------------- /src/image/morn_image_transform2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_image_transform2.c -------------------------------------------------------------------------------- /src/image/morn_vedio_background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/image/morn_vedio_background.c -------------------------------------------------------------------------------- /src/math/morn_MAT_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_MAT_file.c -------------------------------------------------------------------------------- /src/math/morn_calculate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_calculate.c -------------------------------------------------------------------------------- /src/math/morn_fit_LSM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_fit_LSM.c -------------------------------------------------------------------------------- /src/math/morn_interpolation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_interpolation.c -------------------------------------------------------------------------------- /src/math/morn_large_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_large_integer.c -------------------------------------------------------------------------------- /src/math/morn_math_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_math_common.c -------------------------------------------------------------------------------- /src/math/morn_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_matrix.c -------------------------------------------------------------------------------- /src/math/morn_matrix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_matrix2.c -------------------------------------------------------------------------------- /src/math/morn_regression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_regression.c -------------------------------------------------------------------------------- /src/math/morn_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/math/morn_sort.c -------------------------------------------------------------------------------- /src/ptc/morn_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/ptc/morn_buffer.c -------------------------------------------------------------------------------- /src/ptc/morn_coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/ptc/morn_coroutine.c -------------------------------------------------------------------------------- /src/ptc/morn_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/ptc/morn_message.c -------------------------------------------------------------------------------- /src/ptc/morn_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/ptc/morn_pipeline.c -------------------------------------------------------------------------------- /src/ptc/morn_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/ptc/morn_thread.c -------------------------------------------------------------------------------- /src/ptc/morn_thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/ptc/morn_thread_pool.c -------------------------------------------------------------------------------- /src/util/morn_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_CRC.c -------------------------------------------------------------------------------- /src/util/morn_DES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_DES.c -------------------------------------------------------------------------------- /src/util/morn_INI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_INI.c -------------------------------------------------------------------------------- /src/util/morn_JSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_JSON.c -------------------------------------------------------------------------------- /src/util/morn_TAR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_TAR.c -------------------------------------------------------------------------------- /src/util/morn_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_array.c -------------------------------------------------------------------------------- /src/util/morn_btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_btree.c -------------------------------------------------------------------------------- /src/util/morn_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_builder.c -------------------------------------------------------------------------------- /src/util/morn_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_chain.c -------------------------------------------------------------------------------- /src/util/morn_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_codec.c -------------------------------------------------------------------------------- /src/util/morn_csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_csv.c -------------------------------------------------------------------------------- /src/util/morn_dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_dictionary.c -------------------------------------------------------------------------------- /src/util/morn_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_file.c -------------------------------------------------------------------------------- /src/util/morn_file_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_file_list.c -------------------------------------------------------------------------------- /src/util/morn_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_graph.c -------------------------------------------------------------------------------- /src/util/morn_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_list.c -------------------------------------------------------------------------------- /src/util/morn_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_log.c -------------------------------------------------------------------------------- /src/util/morn_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_lru.c -------------------------------------------------------------------------------- /src/util/morn_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_map.c -------------------------------------------------------------------------------- /src/util/morn_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_memory.c -------------------------------------------------------------------------------- /src/util/morn_memory_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_memory_block.c -------------------------------------------------------------------------------- /src/util/morn_sheet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_sheet.c -------------------------------------------------------------------------------- /src/util/morn_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_string.c -------------------------------------------------------------------------------- /src/util/morn_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_table.c -------------------------------------------------------------------------------- /src/util/morn_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_text.c -------------------------------------------------------------------------------- /src/util/morn_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_time.c -------------------------------------------------------------------------------- /src/util/morn_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_tree.c -------------------------------------------------------------------------------- /src/util/morn_universal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/util/morn_universal.c -------------------------------------------------------------------------------- /src/wave/morn_PSwave_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_PSwave_filter.c -------------------------------------------------------------------------------- /src/wave/morn_WAV_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_WAV_file.c -------------------------------------------------------------------------------- /src/wave/morn_audio_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_audio_volume.c -------------------------------------------------------------------------------- /src/wave/morn_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave.c -------------------------------------------------------------------------------- /src/wave/morn_wave_FFT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave_FFT.c -------------------------------------------------------------------------------- /src/wave/morn_wave_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave_filter.c -------------------------------------------------------------------------------- /src/wave/morn_wave_normalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave_normalize.c -------------------------------------------------------------------------------- /src/wave/morn_wave_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave_pitch.c -------------------------------------------------------------------------------- /src/wave/morn_wave_preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave_preprocess.c -------------------------------------------------------------------------------- /src/wave/morn_wave_resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave_resample.c -------------------------------------------------------------------------------- /src/wave/morn_wave_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wave/morn_wave_shape.c -------------------------------------------------------------------------------- /src/wrap/morn_USB_Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wrap/morn_USB_Camera.cpp -------------------------------------------------------------------------------- /src/wrap/morn_blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wrap/morn_blas.c -------------------------------------------------------------------------------- /src/wrap/morn_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wrap/morn_socket.c -------------------------------------------------------------------------------- /src/wrap/morn_stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wrap/morn_stb_image.c -------------------------------------------------------------------------------- /src/wrap/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wrap/stb_image.h -------------------------------------------------------------------------------- /src/wrap/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/src/wrap/stb_image_write.h -------------------------------------------------------------------------------- /test/canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/canada.json -------------------------------------------------------------------------------- /test/citm_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/citm_catalog.json -------------------------------------------------------------------------------- /test/test_CRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_CRC.c -------------------------------------------------------------------------------- /test/test_CRC2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_CRC2.cpp -------------------------------------------------------------------------------- /test/test_INI_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_INI_file.c -------------------------------------------------------------------------------- /test/test_INI_file.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_INI_file.ini -------------------------------------------------------------------------------- /test/test_INI_file_out.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_INI_file_out.ini -------------------------------------------------------------------------------- /test/test_JSON_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_JSON_file.c -------------------------------------------------------------------------------- /test/test_JSON_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_JSON_file.json -------------------------------------------------------------------------------- /test/test_JSON_file2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_JSON_file2.cpp -------------------------------------------------------------------------------- /test/test_TCP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_TCP.c -------------------------------------------------------------------------------- /test/test_UDP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_UDP.c -------------------------------------------------------------------------------- /test/test_argument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_argument.c -------------------------------------------------------------------------------- /test/test_array2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_array2.cpp -------------------------------------------------------------------------------- /test/test_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_binary.cpp -------------------------------------------------------------------------------- /test/test_blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_blas.c -------------------------------------------------------------------------------- /test/test_calculate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_calculate.c -------------------------------------------------------------------------------- /test/test_chrono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_chrono.c -------------------------------------------------------------------------------- /test/test_cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_cl.c -------------------------------------------------------------------------------- /test/test_cl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_cl2.c -------------------------------------------------------------------------------- /test/test_cl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_cl3.cpp -------------------------------------------------------------------------------- /test/test_clblas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_clblas.c -------------------------------------------------------------------------------- /test/test_color_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_color_convert.c -------------------------------------------------------------------------------- /test/test_convex_hull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_convex_hull.cpp -------------------------------------------------------------------------------- /test/test_coroutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_coroutine.c -------------------------------------------------------------------------------- /test/test_csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_csv.c -------------------------------------------------------------------------------- /test/test_datatype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_datatype.c -------------------------------------------------------------------------------- /test/test_dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_dictionary.c -------------------------------------------------------------------------------- /test/test_dictionary2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_dictionary2.cpp -------------------------------------------------------------------------------- /test/test_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_event.c -------------------------------------------------------------------------------- /test/test_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_fft.c -------------------------------------------------------------------------------- /test/test_fft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_fft2.c -------------------------------------------------------------------------------- /test/test_fit_LSM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_fit_LSM.c -------------------------------------------------------------------------------- /test/test_geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_geometry.c -------------------------------------------------------------------------------- /test/test_geometry2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_geometry2.cpp -------------------------------------------------------------------------------- /test/test_geometry3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_geometry3.c -------------------------------------------------------------------------------- /test/test_geometry4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_geometry4.c -------------------------------------------------------------------------------- /test/test_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_graph.c -------------------------------------------------------------------------------- /test/test_image_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_binary.c -------------------------------------------------------------------------------- /test/test_image_binary2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_binary2.c -------------------------------------------------------------------------------- /test/test_image_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_convert.c -------------------------------------------------------------------------------- /test/test_image_convert2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_convert2.cpp -------------------------------------------------------------------------------- /test/test_image_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_draw.c -------------------------------------------------------------------------------- /test/test_image_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_file.c -------------------------------------------------------------------------------- /test/test_image_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_resize.c -------------------------------------------------------------------------------- /test/test_image_resize2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_image_resize2.cpp -------------------------------------------------------------------------------- /test/test_interpolation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_interpolation.c -------------------------------------------------------------------------------- /test/test_interpolation2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_interpolation2.c -------------------------------------------------------------------------------- /test/test_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_json.json -------------------------------------------------------------------------------- /test/test_json_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_json_out.json -------------------------------------------------------------------------------- /test/test_large_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_large_integer.c -------------------------------------------------------------------------------- /test/test_linear_equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_linear_equation.cpp -------------------------------------------------------------------------------- /test/test_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_list.c -------------------------------------------------------------------------------- /test/test_list2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_list2.cpp -------------------------------------------------------------------------------- /test/test_list_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_list_sort.cpp -------------------------------------------------------------------------------- /test/test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_log.c -------------------------------------------------------------------------------- /test/test_log2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_log2.cpp -------------------------------------------------------------------------------- /test/test_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_map.c -------------------------------------------------------------------------------- /test/test_map2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_map2.cpp -------------------------------------------------------------------------------- /test/test_map3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_map3.cpp -------------------------------------------------------------------------------- /test/test_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_math.c -------------------------------------------------------------------------------- /test/test_math_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_math_common.c -------------------------------------------------------------------------------- /test/test_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_matrix.c -------------------------------------------------------------------------------- /test/test_matrix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_matrix2.c -------------------------------------------------------------------------------- /test/test_matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_matrix3.cpp -------------------------------------------------------------------------------- /test/test_matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_matrix4.cpp -------------------------------------------------------------------------------- /test/test_matrix5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_matrix5.cpp -------------------------------------------------------------------------------- /test/test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_memory.c -------------------------------------------------------------------------------- /test/test_memory2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_memory2.c -------------------------------------------------------------------------------- /test/test_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_message.c -------------------------------------------------------------------------------- /test/test_message1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_message1.c -------------------------------------------------------------------------------- /test/test_message2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_message2.c -------------------------------------------------------------------------------- /test/test_message2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_message2.cpp -------------------------------------------------------------------------------- /test/test_message3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_message3.c -------------------------------------------------------------------------------- /test/test_minist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_minist.c -------------------------------------------------------------------------------- /test/test_minist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_minist.ini -------------------------------------------------------------------------------- /test/test_minist.morn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_minist.morn -------------------------------------------------------------------------------- /test/test_permutation_combination.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_permutation_combination.c -------------------------------------------------------------------------------- /test/test_pipeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_pipeline.c -------------------------------------------------------------------------------- /test/test_proc_variate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_proc_variate.c -------------------------------------------------------------------------------- /test/test_process_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_process_message.c -------------------------------------------------------------------------------- /test/test_process_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_process_mutex.c -------------------------------------------------------------------------------- /test/test_process_topic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_process_topic.c -------------------------------------------------------------------------------- /test/test_process_topic2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_process_topic2.c -------------------------------------------------------------------------------- /test/test_process_variate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_process_variate.c -------------------------------------------------------------------------------- /test/test_property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_property.c -------------------------------------------------------------------------------- /test/test_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_queue.c -------------------------------------------------------------------------------- /test/test_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_signal.c -------------------------------------------------------------------------------- /test/test_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_sort.c -------------------------------------------------------------------------------- /test/test_sort2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_sort2.cpp -------------------------------------------------------------------------------- /test/test_stringnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_stringnum.c -------------------------------------------------------------------------------- /test/test_temp_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_temp_transform.c -------------------------------------------------------------------------------- /test/test_tensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_tensor.c -------------------------------------------------------------------------------- /test/test_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_text.c -------------------------------------------------------------------------------- /test/test_text2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_text2.cpp -------------------------------------------------------------------------------- /test/test_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_thread.c -------------------------------------------------------------------------------- /test/test_thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_thread_pool.c -------------------------------------------------------------------------------- /test/test_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_time.c -------------------------------------------------------------------------------- /test/test_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_transform.c -------------------------------------------------------------------------------- /test/test_transform2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/test/test_transform2.cpp -------------------------------------------------------------------------------- /tool/calculate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/tool/calculate.c -------------------------------------------------------------------------------- /tool/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/tool/crypt.c -------------------------------------------------------------------------------- /tool/hashvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/tool/hashvalue.c -------------------------------------------------------------------------------- /tool/imageformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/tool/imageformat.c -------------------------------------------------------------------------------- /tool/morn_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingweizhanghuai/Morn/HEAD/tool/morn_help.h --------------------------------------------------------------------------------