2024-09-06
建站教程
00

群友说可以用这个:https://aplayer.js.org/#/zh-Hans/

我也试试。

自定义 HTML (head)写入:

html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css"> <script src="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js"></script>
2024-09-06
深度学习
00

1、求取图像 breast 的阴图像。将得到的结果保存为 JPEG 格式。设置多个不同的质量因子,对比图像质量,并列表分析其与图像数据量之间的关系。 2、设计灰度映射函数,提升图像 pollen2 的对比度。 3、通过直方图均衡化,提升图像 pollen1、pollen2、pollen3 以及 pollen4 的对比度,画出对应的灰度映射函数,并作必要分析。 4、利用图像 test1 和 test2,测试不同像素补充方式对空域均值滤波结果的影响,并作必要分析。 5、利用图像 test3,测试不同模板大小对空域平滑结果的影响,并作必要分析。 6、对图像 ic 分别添加不同强度的高斯噪声和椒盐噪声,并分别利用空域均值滤波器和中值滤波器去噪。对比实验结果,并作必要分析。 7、利用拉普拉斯算子增强图像 moon 的细节。 8、求取图像 test4 的幅度谱,并用 log 函数进行动态范围调整,对比显示结果。 9、在离散傅里叶变换之前,先在图像的空域乘以-1的指数项:(-1)^(x+y)。重复任务 8 的过程,比较所得幅度谱的异同,简述理由。 10、将图像 test5 变换到频域,执行低通滤波。比较不同截止频率下的滤波效果;比较不同类型滤波器(理想、巴特沃斯、高斯)的滤波效果,并进行总结。设计陷波滤波器,与低通滤波的结果进行比较。 11、将图像 test6 的较亮区域变为半透明绿色,较暗区域保持不变,显示输出结果。 12、设计形态学算法填充 fill 中的黑色孔洞。 13、设计灰度形态学算法测定 wood 中粒子的主要尺寸。

2024-09-05
建站教程
00

你可以通过以下步骤在博客首页上添加音乐播放器并设置控件为悬浮播放按钮。以下代码分别放入你博客的自定义 CSS、自定义 Script、自定义 HTML (body) 中。

2024-09-04
深度学习
00
2024-09-04
深度学习
00

cmake安装,如果需要的话,一般不要:

bash
wget https://github.com/Kitware/CMake/releases/download/v3.26.1/cmake-3.26.1-Linux-x86_64.sh \ -q -O /tmp/cmake-install.sh \ && chmod u+x /tmp/cmake-install.sh \ && mkdir /opt/cmake-3.26.1 \ && /tmp/cmake-install.sh --skip-license --prefix=/opt/cmake-3.26.1 \ && rm /tmp/cmake-install.sh \ && ln -s /opt/cmake-3.26.1/bin/* /usr/local/bin

torch==2.4.0 xformers==0.0.27.post2

bash
pip3 install --no-cache-dir networkx==3.1 pip3 install --no-cache-dir torch==2.4.0 torchvision==0.19 torchaudio==2.4.0 xformers==0.0.27.post2 --index-url https://download.pytorch.org/whl/cu121 pip3 install --no-cache-dir git+https://github.com/huggingface/transformers@19e6e80e10118f855137b90740936c0b11ac397f \ && pip3 install --no-cache-dir accelerate \ && pip3 install --no-cache-dir qwen-vl-utils pip3 install --no-cache-dir --no-build-isolation flash-attn==2.6.1