原创 tensorflow slim layers

arg_scope TFDecorator 一個提供了 __get__, __call__ tf_contextlib 相當於python的上下文管理器 A tf_decorator-aware wrapper for cont

原创 8086的內存分段機制 內存尋址

保護模式下尋址 段機制實例分析 如圖,8086內部有8個16位寄存器,AX BX CX DX SI DI BP SP 爲了加快指令執行速度,8086內部有一個6字節的指令預取隊列,當處理器執行不需要訪問內存的指令時,

原创 dynamic sets

操作分爲兩類: queries, modifying operation,前者只是返回信息,後者會改變set search(S, k) insert(S, x) delete(S, x) minimum(S) maxim

原创 排序算法(一) c語言

// main.c #include <stdio.h> #include "sortD.h" #include "sortD.c" #define N 12 int main() { RedType d[N]={{0, '

原创 二叉排序樹 c

/* ds.h */ /* Some pre define */ #ifndef _HS_H #define _HS_H #include <string.h> #include <ctype.h> #include <sys/mall

原创 數據結構 c 習題

/* 從順序表中刪除具有最小值的元素 並返回該值 空位置由最好一個元素填補 若表爲空 顯示出錯信息並退出 */ #include <stdio.h> #include <stdlib.h> #define MAXLENGTH 1

原创 二叉樹 c 實現

/* binaryTreeMain.c */ // #define CHAR #include "ds.h" #ifdef CHAR typedef char TElemType; TElemType Nil=' '; #

原创 C string

#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct{ char *ch; int length; }MyString; i

原创 理解四元組 Understanding Quaternions

翻譯自 https://www.3dgep.com/understanding-quaternions/ 四元組 Transformation matrices 在三維空間中,任何一個座標系可以有一個4*4的轉換矩陣表示,其中左上角3*3

原创 caffe train 源碼

caffe train 源碼 int train() { // 查看是否提供了solver CHECK_GT(FLAGS_solver.size(), 0) << "Need a solver definition to trai

原创 spp 論文筆記

Spatial Pyramid Pooling in Deep Convolutional Networks for Visual Recognition crop & warp Spatial pyramid pooling In t

原创 c指針和結構體

指針與結構體

原创 二叉樹 c

/* ds.h */ /* Some pre define */ #ifndef _HS_H #define _HS_H #include <string.h> #include <ctype.h> #include <sys/mall

原创 Fast R-CNN 論文 筆記 及 源碼解讀

Fast R-CNN 與RCNN SPPnet對比 RCNN首先finetune,使用log loss。然後,使用SVMs來訓練,最後,使用bounding-box regressor。 代價大 慢 Fast R-CNN 模型結構和訓

原创 點雲生成

matlab點雲生成,可以參考我的github https://github.com/JunrQ/GrindingTrajectoryPlanning/blob/master/utils/generatePointsCloud.cpp 使