在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++语言基础 → Morn源码

Morn源码

C/C++语言基础

下载此实例
  • 开发语言:C/C++
  • 实例大小:81.25M
  • 下载次数:7
  • 浏览次数:81
  • 发布时间:2022-08-22
  • 实例类别:C/C++语言基础
  • 发 布 人:Timex
  • 文件格式:.rar
  • 所需积分:2
 相关标签: MORN

实例介绍

【实例简介】Morn源码


C语言的基础工具和基础算法库包括数据结构图像处理音频处理机器学习等


【实例截图】

from clipboard

【核心代码】

.
├── Morn
│   ├── LICENSE
│   ├── README.md
│   ├── doc
│   │   ├── 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:约定.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
│   │   ├── Morn:深度学习框架.md
│   │   ├── Morn:视频背景提取.md
│   │   ├── Morn:图像坐标变换2.md
│   │   ├── Morn:图像加载和保存.md
│   │   ├── Morn:数学表达式运算.md
│   │   ├── README_CN.md
│   │   ├── logo.PNG
│   │   ├── 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
│   │   ├── 拟合2.PNG
│   │   ├── 二值图.PNG
│   │   ├── 内存池.PNG
│   │   ├── 图片缩放.PNG
│   │   ├── 容器排序.PNG
│   │   └── 傅里叶变换.PNG
│   ├── 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
│   ├── 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_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_caculate.c
│   │   │   ├── morn_fit_LSM.c
│   │   │   ├── morn_gaussian.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_message.c
│   │   │   ├── morn_pipeline.c
│   │   │   ├── morn_process.c
│   │   │   ├── morn_thread.c
│   │   │   └── morn_thread_pool.c
│   │   ├── util
│   │   │   ├── morn_DES.c
│   │   │   ├── morn_INI.c
│   │   │   ├── morn_JSON.c
│   │   │   ├── morn_TAR.c
│   │   │   ├── morn_array.c
│   │   │   ├── morn_btree.c
│   │   │   ├── morn_chain.c
│   │   │   ├── morn_file.c
│   │   │   ├── morn_file_list.c
│   │   │   ├── morn_list.c
│   │   │   ├── morn_log.c
│   │   │   ├── morn_map.c
│   │   │   ├── morn_memory.c
│   │   │   ├── morn_memory_block.c
│   │   │   ├── morn_sheet.c
│   │   │   ├── morn_string.c
│   │   │   ├── morn_table.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_JPG.c
│   │       ├── morn_PNG.c
│   │       ├── morn_USB_Camera.cpp
│   │       ├── morn_blas.c
│   │       └── morn_socket.c
│   ├── test
│   │   ├── test_INI_file.c
│   │   ├── test_INI_file.ini
│   │   ├── test_JSON_file.c
│   │   ├── test_JSON_file.json
│   │   ├── test_JSON_file2.c
│   │   ├── test_JSON_file2.cpp
│   │   ├── test_UDP.c
│   │   ├── test_array2.cpp
│   │   ├── test_binary.cpp
│   │   ├── test_blas.c
│   │   ├── test_caculate.c
│   │   ├── test_cl.c
│   │   ├── test_cl2.c
│   │   ├── test_cl3.cpp
│   │   ├── test_clblas.c
│   │   ├── test_color_convert.c
│   │   ├── test_datatype.c
│   │   ├── test_event.c
│   │   ├── test_fft.c
│   │   ├── test_fft2.c
│   │   ├── test_fit_LSM.c
│   │   ├── test_geometry.c
│   │   ├── test_geometry2.cpp
│   │   ├── test_geometry3.c
│   │   ├── test_image_binary.c
│   │   ├── test_image_binary2.c
│   │   ├── test_image_draw.c
│   │   ├── test_image_resize.c
│   │   ├── test_image_resize2.cpp
│   │   ├── test_interpolation.c
│   │   ├── test_json.json
│   │   ├── test_large_integer.c
│   │   ├── 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_matrix.c
│   │   ├── test_memory.c
│   │   ├── test_memory2.c
│   │   ├── test_message.c
│   │   ├── test_message1.c
│   │   ├── test_message2.c
│   │   ├── test_message3.c
│   │   ├── test_message4.c
│   │   ├── test_minist.c
│   │   ├── test_minist.ini
│   │   ├── test_minist.morn
│   │   ├── test_permutation_combination.c
│   │   ├── test_pipeline.c
│   │   ├── test_process_mutex.c
│   │   ├── test_queue.c
│   │   ├── test_signal.c
│   │   ├── test_sort.c
│   │   ├── test_sort2.cpp
│   │   ├── test_temp_transform.c
│   │   ├── test_tensor.c
│   │   ├── test_thread.c
│   │   ├── test_thread_pool.c
│   │   ├── test_time.c
│   │   ├── test_transform.c
│   │   └── test_transform2.cpp
│   └── tool
│       ├── caculate.c
│       ├── crypt.c
│       ├── hashvalue.c
│       ├── imageformat.c
│       └── morn_help.h
└── Morn源码.rar

17 directories, 262 files


标签: MORN

实例下载地址

Morn源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警