谷歌 Google ProtoBuf用法例項

2021-07-31 15:33:18 字數 1092 閱讀 3413

這裡貼乙個介紹貼

這裡就介紹怎麼安裝的了,安裝caffe的時候一起安裝的,這裡介紹一下怎麼用這個庫,caffe用他來當資料傳輸說明他很快

新建乙個proto定義資料傳輸的結構,這個和ros上資料傳輸很像

syntax = "proto2";

package caffe; //網域名稱

message person

message phonenumber

optional phonenumber phone = 4;

}

package 指的是網域名稱,就是std一樣

write.cpp

#include #include #include "caffe.pb.h"  

using namespace std;

using namespace caffe;

int main()

//system("pause");

return 0;

}

上面的修改其實我是看他生產的caffe.pb.h裡面定義的函式,發現有這些函式可以直接用的

read.cpp

#include #include #include "caffe.pb.h"  

using namespace std;

using namespace caffe;

void printinfo(const person & person)

int main()

printinfo(person);

return 0;

}

然後編譯,加入庫就好了

protoc --cpp_out=./ caffe.proto   #在當前目錄生成.h和.cc

g++ write.cpp caffe.pb.cc -o write -lprotobuf

g++ read.cpp caffe.pb.cc -o read -lprotobuf

谷歌擴充套件抓資料(谷歌外掛程式)

模擬登入不管用的時候,你要抓人家後台資料,這個時候可以用谷歌外掛程式。谷歌外掛程式又稱谷歌擴充套件。裡面全是js。載入jquery就可以抓資料了,還可以跨頁面呢。把資料存到background裡面。迴圈抓物流跟蹤號,示例 防止被領導批評,這裡只放部分的 學習方法即可 popup.js部分 var w...

谷歌合併安卓支付和谷歌錢包 新推「谷歌支付」品牌

騰訊科技訊 在手機支付市場,谷歌進入市場較早,但是如今卻出現了落後,原因之一是產品重疊,品牌混亂。據外媒最新訊息,谷歌日前對移動支付產品進行了重組,推出了 谷歌支付 的新品牌。據多家美國科技 報道,目前,谷歌有關移動支付存在兩個獨立產品,分別是安卓支付和谷歌錢包。前者是谷歌程式設計客棧最主要的移動支...

谷歌cola上載入谷歌雲盤檔案

1 使用下面 安裝必要的檔案 pip install u q pydrive from pydrive.auth import googleauth from pydrive.drive import googledrive from google.colab import auth from oa...