Navigation

    OpenASIC
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • All categories
    • 代码发布 | OpenASIC Code Release
    • 新闻文档 | News & Documents
    • 交流讨论 | General Discussion
    •      xkAVC IP Core
    •      xkHEVC IP Core
    •      xkISP
    •      xkDLA
    •      TGU
    • 问题反馈 | Comments & Feedback
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • B

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

      42
      1
      Votes
      42
      Posts
      319757
      Views

      E

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

      H.265V2.0性能和使用问题
      交流讨论 | General Discussion • dd • • sly  

      2
      -3
      Votes
      2
      Posts
      6670
      Views

      B

      是的 可以用在国产FPGA上,开源代码使用没有限制,是免费的
    • 林

      企业商务合作没有在主页上看到具体链接,请问是否有开通这个功能的计划?
      问题反馈 | Comments & Feedback • • 林炸虾  

      2
      0
      Votes
      2
      Posts
      4277
      Views

      B

      @林炸虾 欢迎联系 bo@xksilicon.com
    • X

      xk-ISP code manuals
      xkISP • • xiaowanwei  

      8
      0
      Votes
      8
      Posts
      10389
      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);
    • R

      请问是否有开发H.265解码器的计划
      交流讨论 | General Discussion • • rinkeigou  

      4
      0
      Votes
      4
      Posts
      9959
      Views

      林

      @bo 老师你好,我想请问一下你的企业商务合作联系方式的多少呢?
    • A

      TGU:开源神经网络处理器
      TGU • • admin  

      2
      0
      Votes
      2
      Posts
      6086
      Views

      C

      请问是否有设计文档或者论文可以展示?
    • B

      xkISP - Open Source ISP IP Core
      代码发布 | OpenASIC Code Release • • bo  

      1
      -7
      Votes
      1
      Posts
      2145
      Views

      No one has replied

    • B

      xkISP@Github
      xkISP • • bo  

      1
      0
      Votes
      1
      Posts
      3940
      Views

      No one has replied

    • L

      基于PYNQ的h264演示
      交流讨论 | General Discussion • • liuwh  

      2
      0
      Votes
      2
      Posts
      6583
      Views

      L

      目前发现规律,0x43 十进制为67,高度宏块数减一;0x77 十进制为119,宽度宏块减一 应该是正确的
    • C

      请问XK264/265的3.0版本有预估发布时间吗?
      交流讨论 | General Discussion • • cdfeg  

      1
      0
      Votes
      1
      Posts
      5252
      Views

      No one has replied

    • G

      读后感
      交流讨论 | General Discussion • • grooprince  

      2
      0
      Votes
      2
      Posts
      7391
      Views

      高

      @grooprince 你好,您看的是H.264还是H.265的,想再深入了解下您那做的ip,是否方便留下联系方式私聊
    • J

      H.265 V2.0 综合优化
      交流讨论 | General Discussion • • johu  

      2
      0
      Votes
      2
      Posts
      5877
      Views

      J

      ![0_1639545607861_新建位图图像.bmp](Uploading 100%)bolded text
    • B

      H265 ENCODER RTL V2.0仿真、验证
      交流讨论 | General Discussion • h265 仿真 验证 • • btlmx  

      5
      0
      Votes
      5
      Posts
      16572
      Views

      Y

      请问416 240的怎么通过的,我用的2.0版,根本过不了,i帧可以过,接着的p帧就不行了,
    • Y

      H264 RTL仿真生成的bs数据与f264_note.exe生成的数据不一致的问题?
      问题反馈 | Comments & Feedback • • yunzebit  

      1
      0
      Votes
      1
      Posts
      4887
      Views

      No one has replied

    • B

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

      15
      2
      Votes
      15
      Posts
      67552
      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的说明文档可以参考呢? 感谢老师解答。
    • B

      Bs2H264 SW Code
      代码发布 | OpenASIC Code Release • • bo  

      1
      0
      Votes
      1
      Posts
      1646
      Views

      No one has replied

    • M

      Rtl Design - HM-265 model
      交流讨论 | General Discussion • • mbahadir  

      1
      0
      Votes
      1
      Posts
      5939
      Views

      No one has replied

    • Y

      H264 bs_check.dat如何转成264 nal?
      问题反馈 | Comments & Feedback • • yafei  

      1
      0
      Votes
      1
      Posts
      5563
      Views

      No one has replied

    • F

      请问咱们H264 ENCODER IP有没有C model?如果有的话,在哪下载?谢谢!
      问题反馈 | Comments & Feedback • • fengzhu  

      2
      5
      Votes
      2
      Posts
      8435
      Views

      S

      Did you get it sir? 你有模特先生吗 sir?
    • L

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

      7
      0
      Votes
      7
      Posts
      16604
      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时发生错误 如何纠正?
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 4 / 8