最新文章第2页
C语言练习题-天煜博客

C语言练习题数组

/** * File Name: array.c * Author: Haoxuan * Mail: haovxuan@126.com * Created Time: 2020年12月17日 星期四 12时43分36秒 **/ #include #define SIZE 9 /* * 1、使用数组写出fibonacci数列...
编程麻瓜的头像-天煜博客编程麻瓜6年前
08414
Ubuntu 22.04编译Linux内核提示错误multiple definition of `yylloc'-天煜博客

Ubuntu 22.04编译Linux内核提示错误multiple definition of `yylloc’

摘抄修改自:作者:Leung_ManWah链接:https://www.jianshu.com/p/8205095e50cd报错信息在使用Ubuntu22.04系统时,编译Linux内核出现错误scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple d...
海思平台vi vpss venc vdec vpss模块中的分辨率总结-天煜博客

海思平台vi vpss venc vdec vpss模块中的分辨率总结

VI、VPSS、VENC、VDEC、VO对这五个模块配置过程中都涉及到分辨率,现在总结如下: 1.VI模块: 涉及到的函数:HI_S32 HI_MPI_VI_SetChnAttr(VI_CHN ViChn, const VI_CHN_ATTR_S *pstAttr); 其中...
Linux基础教程-天煜博客

Linux基础教程重定向/管道

编号   含义              默认 0     标准输入              键盘 1     标准输出(info)     终端 2     错误输出(error)   终端 重定向符号: > 标准输出(以覆盖...
编程麻瓜的头像-天煜博客编程麻瓜6年前
09414
Ubuntu20.04百度输入法候选词乱码问题的修复 Linux百度输入法乱码-天煜博客

Ubuntu20.04百度输入法候选词乱码问题的修复 Linux百度输入法乱码

最近遇到Ubuntu 20.04下百度输入法候选词乱码的情况,该问题是由于没有安装QT造成的。 修复方式: sudo apt install qt5-default qtcreator qml-module-qtquick-controls2
编程麻瓜的头像-天煜博客编程麻瓜6年前
03355
记录一次arm-linux的交叉编译MP4v2过程-天煜博客

记录一次arm-linux的交叉编译MP4v2过程

1. 去下载最新的源码 下载传送门:GitHub - enzo1982/mp4v2: Reviving the MP4v2 project... 本文使用的是MP4v2 v2.1.1版本的,下载的压缩包为mp4v2-master.zip 下载后解压到编译服务器上,再合...
PBKDF2 密钥派生过程详解-天煜博客

PBKDF2 密钥派生过程详解

输入参数 密码 (Password): '01455de98c02c1ea6f84d8b33400f2e75a1efbcf3bb66315d414a7b32ef4f545' 盐值 (Salt): '25e18a0cc62c1abee76cb62c96beb66c' 迭代次数 (Iterations): 200000 哈希算法 ...
编程麻瓜的头像-天煜博客编程麻瓜10个月前
01747
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(索引)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(索引)Step By Step Guide

搬运备用 原文博客https://mani2web.wordpress.com/ Hello everyone! Hope everyone is doing good and staying safe!   Four years ago, I had shared a step-by-step guide for instal...
OpenCV-Python快速入门系列11通道的分离、合并、交换-天煜博客

OpenCV-Python快速入门系列11通道的分离、合并、交换

使用Python切片分离通道 def channel_separation1(): image = cv.imread('images/test.png') if image is None: print('Error: Image not found or failed to load.') return cv.imshow('image'...
Deepin下Wireshark的错误修复-天煜博客

Deepin下Wireshark的错误修复Capture session could not be initiated on interface(you don't have permission to capture on 'wlan0')

在Deepin上面新装的Wireshark,选择网卡后报错提示Capture session could not be initiated on interface(you don't have permission to capture on 'wlan0') 在百度找了一些文章,主要有两种解...