Navigation

    OpenASIC
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Popular
    • All categories
    • 代码发布 | OpenASIC Code Release
    • 新闻文档 | News & Documents
    • 交流讨论 | General Discussion
    •      xk264
    •      xk265
    •      xkISP
    •      TGU
    • 问题反馈 | Comments & Feedback
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month

    • B

      关于这个开源项目 from VIP Lab
      新闻文档 | News & Documents • h.265 开源项目 为什么 vip lab • • bo  

      42
      1
      Votes
      42
      Posts
      216183
      Views

      E

      @bo 谢谢范老师,已购买!真是又巧又幸运,我看出版日期还刚好是这个月,看来我是第一批读者啊:)
    • T

      H265 ENCODER RTL V2.0仿真教程
      新闻文档 | News & Documents • • tang  

      36
      0
      Votes
      36
      Posts
      61937
      Views

      龙

      有人成功在Windows用modelsim仿真成功过吗?
    • B

      首款开源H.265 Video Encoder IP Core发布
      新闻文档 | News & Documents • h.265 • • bo  

      28
      2
      Votes
      28
      Posts
      172311
      Views

      B

      @bytree1 目前sao没支持edge, LCU只能是64的 32的没支持,帧压缩没支持
    • B

      对于想参加项目开发的同学
      交流讨论 | General Discussion • • bo  

      28
      0
      Votes
      28
      Posts
      83271
      Views

      B

      @vvrobinham 好的 我稍后加你
    • G

      请问有没有H.264的RTL开源代码
      交流讨论 | General Discussion • • ghostvssb  

      22
      -2
      Votes
      22
      Posts
      95691
      Views

      B

      @asuperbird 编码器延迟理论上很低的,大概5w个时钟周期左右。通过仿真能看到精确的延迟。编码系统延迟还包括帧缓存延迟,bitstream的缓存延迟,通讯延迟等。
    • B

      H.265 Video Encoder IP RTL Simulation 方法
      新闻文档 | News & Documents • h.265 simulation 硬件仿真 • • bo  

      15
      2
      Votes
      15
      Posts
      46622
      Views

      F

      @bo 老师您好,想请教您几个问题: 1、你们实验室做的H265标准编码器与HM16.6的客观BD-Rate性能大概是多少呢? 2、预测模式中inter和intra的所有模式都进行PK吗? 3、在做ME的时候搜索范围是全图大小,还是一定范围,范围是多少? 4、整个RDO过程bits估计有参考HM那一套上下文模型进行更新吗? 5、intra prediction 在角度预测的时候参考像素用的是原始的还是重构的? 6、是否有一个RTL code的说明文档可以参考呢? 感谢老师解答。
    • N

      H264 IP错误的结果
      交流讨论 | General Discussion • • nunosilva96  

      14
      0
      Votes
      14
      Posts
      21525
      Views

      Y

      @shixiaogang 这个问题你解决了吗?H264的bs_check.dat转成H264 NAL?H265 几乎是将bs_check.dat塞进H265 流中,加上vps, sps, pps, slice header。但是H264 生成的bs_check.dat感觉不能这样做,也不知道bs_check.dat到底是什么格式的
    • S

      求助:打包后的码流播放出来结果不正确
      交流讨论 | General Discussion • • shen_lee  

      13
      0
      Votes
      13
      Posts
      24879
      Views

      B

      @nicu_233 是的 264 的更新。 265 更新我们稍晚也会放出来
    • Q

      性能如何,后续开发计划有么
      交流讨论 | General Discussion • • Quenii  

      10
      0
      Votes
      10
      Posts
      43153
      Views

      B

      @wlf8263121 这个我们要稍晚一点出,现在暂时没有
    • B

      研讨会视频发布(The Workshop Video) @ICCaffe
      交流讨论 | General Discussion • • bo  

      9
      0
      Votes
      9
      Posts
      24938
      Views

      K

      这些视频有可用的英语字幕吗?我想学习,但我听不懂。请回复。谢谢!
    • B

      H.265 Encoder FPGA Demo System 演示系统架构
      新闻文档 | News & Documents • h.265 fpga demo 演示系统 • • bo  

      8
      3
      Votes
      8
      Posts
      41285
      Views

      0

      @070411209 解决了VIP IP问题,解决了不同FPGA型号无法映射问题;
    • M

      请问下这个代码可以综合成门级网表么?
      交流讨论 | General Discussion • • manucrespo  

      8
      0
      Votes
      8
      Posts
      26947
      Views

      M

      @bo 请看上一条回复
    • X

      xk-ISP code manuals
      xkISP • • xiaowanwei  

      8
      0
      Votes
      8
      Posts
      2505
      Views

      K

      Raw Denoise The RAWDNS module implements image denoising on the raw domain.The the NLMs(Non-local Means) algorithm based on block matching is used for denoising. Parameter typedef struct{ uint6 sigma; //range[0-63] uint1 eb; //{0,1} uint7 Filterpara; //range[0-127] uint12 invksigma2; //1/ksigma2 <<12 }rawdns_register; Param sigma and Filterpara jointly control the intensity of the filtering.Param invksigma2 is the quantized reciprocal of the product of sigma and Filterpara。 Input & Ouput typedef stream_u12 Stream_t;//input raw data typedef stream_u12 Stream_t;//output rgb data Resources The algorithm uses a 11x11 window to complete the denoising process, and the storage resources are listed as follows uint12 rawdns_lines[10][8192];//10x8192 sram uint12 rawdns_block[11][11];// 11x11 registers Algorithm Function rawdns_process describes the block matching based NLM algorithm, and the main calculation process is the following loop. for(k=1;k<=9;k+=2){ for(l=1;l<=9;l+=2){ if((k!=5) || (l!=5)) { eur_distance = Cal_Eur_Distance(rawdns_block,k,l); diff = rawdns_max(eur_distance, sigma2); weight = Cal_weight(diff,rawdns_reg ,ksigma2); if(weight > max_weight) { max_weight = weight; } total_weight += weight; total_value += weight * rawdns_block[k][l]; } } } The Cal_Eur_Distance function calculates the Euclidean distance between different blocks, and cal_weight calculates the Gaussian weights of different pixels.Finally, according to the calculation result, the pixel value after denoising(usually center pixel of the window) is output. if(total_weight == 0) return rawdns_block[5][5]; else return rawdns_clip(total_value/total_weight);
    • B

      稍后出FPGA Demo视频
      交流讨论 | General Discussion • • bo  

      7
      1
      Votes
      7
      Posts
      30260
      Views

      B

      视频已经处了,请大家移步 http://www.openasic.org/topic/23/h-265-video-encoder-fpga-demo-video
    • E

      请问我能发布我的h.264 decoder RTL及testbench在这里吗
      交流讨论 | General Discussion • • eebq  

      7
      0
      Votes
      7
      Posts
      22040
      Views

      E

      @bo 可能是文件格式不对7z上传了不能显示,zip和pdf可以
    • L

      求助!user guide 和 introduction文档不能下载
      交流讨论 | General Discussion • • ltc2440  

      7
      -1
      Votes
      7
      Posts
      10428
      Views

      B

      @shixiaogang http://openasic.org/topic/32/2017-1-13-ic-caffe线下研讨会ppt文档
    • L

      H265 2.0的RDO流程
      交流讨论 | General Discussion • • lunning  

      7
      0
      Votes
      7
      Posts
      8668
      Views

      S

      @bo Thank you for the reply...I simulated h2enc_v2.0 with an input YUV file but got some errors like ERROR at BS at bs_byte_cnt = 2, f265 is 84, h265 is 32 How can this be rectified?? 谢谢您的回复...我使用输入的YUV文件模拟了h2enc_v2.0,但是发生了一些错误,例如 当BS的bs_byte_cnt = 2,f265为84,h265为32时发生错误 如何纠正?
    • F

      H265 ENCODE Demo演示工程
      交流讨论 | General Discussion • • fmsjtu2007  

      6
      0
      Votes
      6
      Posts
      25222
      Views

      B

      @wr115946873 需要加slice header, pps, sps等。 RTL输出的仅仅是LCU级别的码流,不带任何header信息
    • W

      有没有计划发布英文版本的网站
      交流讨论 | General Discussion • • wxwangyan  

      6
      0
      Votes
      6
      Posts
      23676
      Views

      B

      @pilmihilmi Thank you for your suggestion.
    • B

      开源H.265/HEVC Encoder IP Core V2.0发布
      新闻文档 | News & Documents • • bo  

      6
      0
      Votes
      6
      Posts
      11556
      Views

      S

      I'm getting some errors while doing the simulaion. The parameter 'bs_byte_cnt' isn't matching between f265 and h265 How can it be corrected I've attached the screenshot..Please tell 模拟时出现一些错误。 f265和h265之间的参数'bs_byte_cnt'不匹配 如何纠正 我已附上屏幕截图。.请告诉